Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
HannahHaensen committed Nov 14, 2024
1 parent 28d6895 commit 99bb039
Show file tree
Hide file tree
Showing 9 changed files with 1,531 additions and 48 deletions.
Binary file added docs/assets/cviu.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 docs/assets/nerfmm_brick.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 docs/assets/nerfmm_room.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 docs/assets/nerfmm_t1.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 docs/assets/ours.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 docs/assets/ours_T1.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 docs/assets/ours_room.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,483 changes: 1,435 additions & 48 deletions docs/index.html

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions docs/stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
img {
max-width: 100%;
}
.images-compare-container {
display: inline-block;
position: relative;
overflow: hidden;
}
.images-compare-before {
will-change: clip;
position: absolute;
top: 0;
left: 0;
z-index: 2;
pointer-events: none;
overflow: hidden;
}
.images-compare-after {
pointer-events: none;
}
.images-compare-before img, .images-compare-after img {
max-width: 100%;
height: auto;
display: block;
}
.images-compare-separator {
position: absolute;
background: white;
height: 100%;
width: 1px;
z-index: 4;
left: 0;
top: 0;
}
.images-compare-handle {
height: 42px;
width: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
border: 3px solid white;
-webkit-border-radius: 1000px;
-moz-border-radius: 1000px;
border-radius: 1000px;
-webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
-moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
z-index: 3;
background: rgba(0, 0, 0, 0.7);
cursor: pointer;
}
.images-compare-left-arrow, .images-compare-right-arrow {
width: 0;
height: 0;
border: 6px inset transparent;
position: absolute;
top: 50%;
margin-top: -6px;
}
.images-compare-left-arrow {
border-right: 6px solid white;
left: 50%;
margin-left: -17px;
}
.images-compare-right-arrow {
border-left: 6px solid white;
right: 50%;
margin-right: -17px;
}
.images-compare-label {
font-family: sans-serif;
text-transform: uppercase;
font-weight: bold;
position: absolute;
top: 10px;
left: 10px;
z-index: 1;
color: rgba(0, 0, 0, 0.4);
background: rgba(255, 255, 255, 0.7);
padding: 10px;
border-radius: 5px;
pointer-events: none;
display: none;
}
.images-compare-container .images-compare-label {
display: inherit;
}
.images-compare-before .images-compare-label {
left: 10px;
}
.images-compare-after .images-compare-label {
left: auto;
right: 10px;
}

0 comments on commit 99bb039

Please sign in to comment.