|
|
|
|
|
by uptown
4309 days ago
|
|
It's an HTML5 video. If you inspect the page, you'll see the following: <video id="dyson-360-video">
<source src="/video/dyson.mp4" type="video/mp4">
<source src="/video/dyson.ogv" type="video/ogg">
<source src="/video/dyson.webm" type="video/webm">
</video>
So your browser determines which video to play based on your browser's capabilities. And the pagination can be handled with a technique as follows:http://www.thepetedesign.com/demos/onepage_scroll_demo.html |
|