html - video is not working in materializecss -


i working on site insert videos, 1 on direct html page , other 1 background video.
using materializecss.
have videos in videos folder.
tried these codes
background video

.video-background{ background: transparent url("../videos/banner-video.mp4") no-repeat center fixed; background-size: 100% 100%; width: 100%; height: 500px; border:1px solid red; 

}
inserting in html page

<video class="responsive-video" controls> <source src="videos/video1.mp4" type="video/mp4"> 


non of them work, when check materializecss documentation there no need of adding script code. when check console of chrome , firefox, no error displaying


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -