2018
CSS - DEMO - PLAYER - Old School Cassette Player with HTML5 Audio
Old School Cassette Player with HTML5 Audio
Vintage format meets modern web tech: an HTML5 audio player with realistic
2017
CSS - the new code - FullScreen HTML5 Video In Pure CSS
by 1 otherTo make the video fullscreen:
video#bgvid {
position: fixed;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
background: url(polina.jpg) no-repeat;
background-size: cover;
}
Conclusion:
“Background” video can be a very powerful feature on a site, but with great power comes great responsibility: please use such features judiciously.
2014
CSS - 2012 - Nouvelle méthode de remplacement de texte par une image
(via)/* For image replacement */ .ir { border:0; font: 0/0 a; text-shadow: none; color: transparent; background-color: transparent; }
Edit du 09/04/2012 — N’hésitez pas à jeter un oeil sur l’article : My thoughts about the latest Image Replacement techniques qui pointe les défauts de ces nouvelles méthodes de remplacement de texte par une image.
2013
JAVASCRIPT - Popcorn.js | The HTML5 Media Framework
by 2 othersPopcorn.js is an HTML5 media framework written in JavaScript for filmmakers, web developers, and anyone who wants to create time-based interactive media on the web. Popcorn.js is part of Mozilla's Popcorn project.
1
(5 marks)