Skip to content

Commit

Permalink
clean up elements
Browse files Browse the repository at this point in the history
  • Loading branch information
dendenxu authored Feb 28, 2024
1 parent 9658024 commit 81bf9dd
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions relightable_avatar/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@

}

video {
width: 100%;
border-radius: 5px;
}

/* .container {
margin-left: -100px;
} */
Expand Down Expand Up @@ -197,7 +202,7 @@ <h4><strong>Code (Coming Soon)</strong></h4>

<div class="row">
<div class="col-md-12">
<video id="v0" width="100%" style="border-radius: 5px;" autoplay loop muted>
<video autoplay loop muted playsinline poster="img/spinner.svg" onloadeddata=resizeVideo(this)>
<source src="https://zhenx.me/relightable_avatar/teaser_video.mp4" type="video/mp4" />
</video>
<image src="img/teaser.jpg" width="100%"></image>
Expand Down Expand Up @@ -278,7 +283,7 @@ <h3>
</h3>
</div>
<div class="col-md-12">
<video id="v0" width="100%" style="border-radius: 5px;" autoplay loop muted>
<video autoplay loop muted playsinline poster="img/spinner.svg" onloadeddata=resizeVideo(this)>
<source src="https://zhenx.me/relightable_avatar/sparse_reconstruction.mp4" type="video/mp4" />
</video>
</div>
Expand All @@ -289,7 +294,7 @@ <h3>
</p>
</div>
<div class="col-md-12">
<video id="v0" width="100%" style="border-radius: 5px;" autoplay loop muted>
<video autoplay loop muted playsinline poster="img/spinner.svg" onloadeddata=resizeVideo(this)>
<source src="https://zhenx.me/relightable_avatar/monocular_reconstruction.mp4" type="video/mp4" />
</video>
</div>
Expand All @@ -300,7 +305,7 @@ <h3>
</p>
</div>
<div class="col-md-12">
<video id="v0" width="100%" style="border-radius: 5px;" autoplay loop muted>
<video autoplay loop muted playsinline poster="img/spinner.svg" onloadeddata=resizeVideo(this)>
<source src="https://zhenx.me/relightable_avatar/sparse_animation.mp4" type="video/mp4" />
</video>
</div>
Expand All @@ -310,7 +315,7 @@ <h3>
</p>
</div>
<div class="col-md-12">
<video id="v0" width="100%" style="border-radius: 5px;" autoplay loop muted>
<video autoplay loop muted playsinline poster="img/spinner.svg" onloadeddata=resizeVideo(this)>
<source src="https://zhenx.me/relightable_avatar/monocular_animation.mp4" type="video/mp4" />
</video>
</div>
Expand Down Expand Up @@ -385,6 +390,12 @@ <h3>
});
});
</script>
<script type="text/javascript">
function resizeVideo(video) {
video.height = video.clientWidth / video.videoWidth * video.videoHeight;
}
</script>

<!-- Default Statcounter code for Relightable and Animatable Neura
http://zju3dv.github.io/relightable_avatar -->
<script type="text/javascript">
Expand Down

0 comments on commit 81bf9dd

Please sign in to comment.