Code Pad
Code
List Code
Search Code
Images
List Images
Search Images
Login
Privacy
Home
play a video on page load loop and no controls
jquery ui datepicker
js
styling css elements based on their attributes
css
animate background gradient css
css
linear gradient background with 3 colours
css
web storage testing
js
load a script based on a page condition variable
jquery
loop through elements and change the content using each and substr with jquery
jquery
mega menu testing
css
basic foundation grid layout
html
play a video on page load loop and no controls
5:29 am, April 11, 2018
auto play a video on page load, loop it and show no controls
Code
html
css
js
scripts
html
css
.video-wrap { overflow: hidden; height: 530px; } .video-wrap video { width: 100% !important; height: auto !important; margin-top:-50px; }
js
function video_play() { video = document.getElementById('desk'); var isPlaying = video.currentTime > 0 && !video.paused && !video.ended && video.readyState > 2; if (!isPlaying) { video.play(); } } setTimeout(video_play, 1000);
scripts
Download & Run
Download File
Run Demo
Re-load Preview
Preview
Tso9U