I am trying to add a static image as fallback for video background in html 5 but not getting the output can anyone help.
<div class="background-wrap">
<video id="video-bg-elem" preload="auto" autoplay loop muted>
<source src="media/Digital Marketing Agency in CT - Mediaboom.ogv">
<img src="/media/staticimage.jpg" title="Your browser does not support the <video> tag">
Video not supported
</video>
</div>
Check for you image path and replace the <video>
tag in the title with < >
<div class="background-wrap">
<video id="video-bg-elem" preload="auto" autoplay loop muted>
<source src="media/Digital Marketing Agency in CT - Mediaboom.ogv">
<img src="/media/staticimage.jpg"
title="Your browser does not support the <video> tag">
Video not supported
</video>
</div>
Scenario: I run TestCafé wrapped in code, using the API I have a test I want to parameterize, testing with different dynamic values. Problem Testcafé has no support for sending parameters to a ...
Scenario: I run TestCafé wrapped in code, using the API I have a test I want to parameterize, testing with different dynamic values. Problem Testcafé has no support for sending parameters to a ...
I am submitting a form with multiple file upload, all I want to differentiate the uploaded images according to the category which they uploaded <form action="upload.php" method="POST"> &...
I am submitting a form with multiple file upload, all I want to differentiate the uploaded images according to the category which they uploaded <form action="upload.php" method="POST"> &...
I just want to hide a button defaultly and when i select any dropdown list the button comes FIDDLE HERE $(function() { $('#cashbill').change(function() { $('#bill_icon').hide(); $('#...
I just want to hide a button defaultly and when i select any dropdown list the button comes FIDDLE HERE $(function() { $('#cashbill').change(function() { $('#bill_icon').hide(); $('#...
I need to filter the text below from the string using Regex JavaScript: Text: 'http://www.mywebsiteameW1234.com' Should return only: mywebsitename So between character dots and only lowercase ...
I need to filter the text below from the string using Regex JavaScript: Text: 'http://www.mywebsiteameW1234.com' Should return only: mywebsitename So between character dots and only lowercase ...