Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html video tag play button overlay

button {
    background-color: #666;
    border: medium none;
    color: #fff;
    display: block;
    font-size: 18px;
    left: 0;
    margin: 0 auto;
    padding: 8px 16px;
    position: absolute;
    right: 0;
    top: 50%;
}
Comment

html video tag play button overlay

<button class="active">play</button>
<video id="banner-video" preload="auto" loop>
	<source src="https://static.videezy.com/system/resources/previews/000/002/719/original/cloudy-sunset.mp4">
</video>
Comment

html video tag play button overlay

video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
Comment

html video tag play button overlay

$( document ).ready(function() {
var ctrlVideo = document.getElementById("video"); 
$('button').click(function(){
  if ($('button').hasClass("active")){
    
        ctrlVideo.play();
    
    $('button').html("Pause");
    $('button').toggleClass("active");
  } else {
    
        ctrlVideo.pause();
    
    $('button').html("play");
    $('button').toggleClass("active");
  }
});
});
Comment

PREVIOUS NEXT
Code Example
Html :: what is the best programming language in 2021 
Html :: email verification template html 
Html :: on click drop down bootstrao 
Html :: twig markdown html 
Html :: like disLike 
Html :: html entity for $ 
Html :: html stroke width not working 
Html :: html id 
Html :: tailwind button example 
Html :: python download html as text 
Html :: input select and button on same line 
Html :: bootstrap links 
Html :: html code for star symbol 
Html :: how link back to home page html without index 
Html :: how to open html file in terminal 
Html :: html classes 
Html :: mark tag in html 
Html :: html year picker 
Html :: loader for html 
Html :: ref attribute in html 
Html :: how to use h1 tag 
Html :: html self closing tags 
Html :: use html code for close icon after zoom imgage 
Html :: dropbox embed 
Html :: give html content to canavas 
Html :: how to register script html 
Html :: Show all the tags 
Html :: nuxt print html 
Html :: html all caps (applicable only visually) 
Html :: ajust aos 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =