Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Si vous avez SystemeIO, bénéficiez de mon offre : https://le.systeme.io/monoffre
- Voici le code à coller dans un élément HTML pour afficher une vidéo en fond d'écran dans SystemeIO
- Modifiez #video-4b818079 avec l'attribut ID de votre élément vidéo.
- Aussi modifiez l'URL de votre vidéo dans source src="XXXXXXX
- -->
- <video id="jamesvideo" autoplay loop muted>
- <source src="https://d1yei2z3i6k35z.cloudfront.net/525/60f83dfd4fba6_man-blacknwhite.mp4" type="video/mp4"/>
- </video>
- <style>
- #video-4b818079 {
- display: none;
- }
- #jamesvideo {
- position: fixed;
- right:0;
- bottom:0;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- min-width:100%;
- min-height:100%;
- width:auto;
- height:auto;
- z-index:-1;
- animation: fadeIn linear 10s;
- -webkit-animation: fadeIn linear 10s;
- -moz-animation: fadeIn linear 10s;
- -o-animation: fadeIn linear 10s;
- -ms-animation: fadeIn linear 10s;
- }
- @keyframes fadeIn {
- 0% {opacity:0;}
- 100% {opacity:1;}
- }
- @-moz-keyframes fadeIn {
- 0% {opacity:0;}
- 100% {opacity:1;}
- }
- @-webkit-keyframes fadeIn {
- 0% {opacity:0;}
- 100% {opacity:1;}
- }
- @-o-keyframes fadeIn {
- 0% {opacity:0;}
- 100% {opacity:1;}
- }
- @-ms-keyframes fadeIn {
- 0% {opacity:0;}
- 100% {opacity:1;}
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement