html - How to make backgroud over video tag? -


i tried make background on video tag opacity 0.6:

html:

<body>    <video></video> </body> 

css:

body {    background: #000; opacity: 0.6; position: relative } 

check out fiddle link

    .video-wrapper{width:320px;height:240px;position:relative;}     .video-overlay{background:red;opacity:0.6;position:absolute;width:100%;height:100%;top:0;left:0;}     .video-wrapper:hover .video-overlay{display:none;} 

Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -