Skip to content

Commit

Permalink
insert index
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Wohl committed Sep 2, 2024
1 parent 2d87331 commit 8754cc0
Show file tree
Hide file tree
Showing 20 changed files with 1,901 additions and 0 deletions.
116 changes: 116 additions & 0 deletions buffer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Acquisition Phases and Surface Contents</title>
<style>
body {
font-family: Arial, sans-serif;
}

.container {
width: 100%;
margin-top: 20px;
}

.phase {
padding: 10px;
color: white;
display: inline-block;
width: 160px;
margin-right: -5px;
margin-left: 0px;
text-align: center;
font-weight: bold;
}

.acquisition-phase-1 { background-color: #ff6347; }
.acquisition-phase-2 { background-color: #3cb371; }
.acquisition-phase-3 { background-color: #1e90ff; }

.return-phase-1 { background-color: #ff6347;
width: 60px;
margin-top: 5px;
margin-left: 200px; }
.return-phase-2 { background-color: #3cb371; width: 60px;
margin-top: 5px;
margin-left: 110px; }
.return-phase-3 { background-color: #1e90ff; width: 60px;
margin-top: 5px;
margin-left: 110px; }

.surface-contents {
display: flex;
margin-top: 10px;
margin-left: 45px;
}

.surface-contents {
position: relative; /* To position rectangles relative to the container */
display: flex; /* To keep parallelograms and rectangles aligned */
flex-wrap: wrap; /* Allows elements to wrap if necessary */
}

.parallelogram {
width: 180px;
height: 50px;
margin-right: 0px; /* Spacing between parallelogram and rectangle */
transform: skew(60deg);
position: relative; /* To position the arrow inside each parallelogram */
}

.parallelogram::before {
content: "";
position: absolute;
width: 10px; /* Adjust thickness as needed */
height: 100%;
background-color: brown; /* Adjust color as needed */
left: 50%; /* Center the line */
top: 0;
}

.parallelogram::after {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 0;
border-bottom: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid black; /* Adjust color as needed */
border-left: 8px solid black; /* Adjust color as needed */
transform: translate(50%,100%);
}

.surface-1 { background-color: #ff6347; }
.surface-2 { background-color: #3cb371; }
.surface-3 { background-color: #1e90ff; }

</style>
</head>
<body>
<div class="container">
<!-- Acquisition Phases -->
<div class="phase acquisition-phase-1">Acquisition Buffer 1</div>
<div class="phase acquisition-phase-2">Acquisition Buffer 2</div>
<div class="phase acquisition-phase-3">Acquisition Buffer 3</div>
<div class="phase acquisition-phase-1">Acquisition Buffer 1</div>

<div class="surface-contents">
<div class="parallelogram surface-1"></div>

<div class="parallelogram surface-2"></div>

<div class="parallelogram surface-3"></div>

<div class="parallelogram surface-1"></div>
</div>
<div class="surface-contents">
<div class="phase return-phase-1">Pop</div>
<div class="phase return-phase-2">Pop</div>
<div class="phase return-phase-3">Pop</div>
</div>
</div>
</body>
</html>
488 changes: 488 additions & 0 deletions buffer_animation_fast.html

Large diffs are not rendered by default.

488 changes: 488 additions & 0 deletions buffer_animation_slow.html

Large diffs are not rendered by default.

Binary file added images/3602_CoaxlinkOcto_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions images/ALBA_negatiu-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/EuresysLogo_Square_Color__003_.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/HDF5_software.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/VL-phantom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8754cc0

Please sign in to comment.