Pakistani New Drama Tere Bin Ep 16
video {
width: 100%;
max-width: 800px;
}
/* Hide the default controls and show a custom play button */
video::-webkit-media-controls {
display: none !important;
}
.video-play {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: rgba(0,0,0,0.5);
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
}
.video-play:before {
content: "\25B6";
font-size: 30px;
color: #fff;
}
/* Show the custom play button on hover */
video:hover + .video-play {
display: flex;
}

Comments
Post a Comment