user3390776
user3390776

Reputation: 61

Moving background image?

I came across the following website and I was wondering if anyone here knew how the moving background image is being done? Is it a JavaScript plugin, just a regular .gif, etc?

http://kilothought.com/about/

Thanks!

Upvotes: 1

Views: 119

Answers (3)

Xanco
Xanco

Reputation: 902

It's a HTML5 video, if you dig down far enough, you'll find this HTML:

<video class="slider-video" width="1602" height="902" preload="auto" loop="" autoplay="" style="visibility: visible; width: 1602px; height: 902px;" src="http://kilothought.com/wp-content/uploads/2014/02/miami-web-designer-fl.webmhd.webm">

So basically, it's a video that loops over and over again

Here's a JSFiddle: http://jsfiddle.net/eY9Gw/

Upvotes: 1

Oscar Paz
Oscar Paz

Reputation: 18292

It's just a video element placed behind the other elements

Upvotes: 1

Uri Chandler
Uri Chandler

Reputation: 351

It's actually a video background, through this URL: Video Here

  • Right-Click --> Inspect element

Hope this helps!

Upvotes: 1

Related Questions