D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
BrieLewis
Full window
Github gist
video display
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> </head> <body> <div class="video-container"> <iframe src="https://www.youtube.com/watch?v=qmyUAVm5ooY" width="800" height="450" frameborder="0"></iframe> </div> <script> </script> </body>
https://d3js.org/d3.v4.min.js