$('.frame_hover').hover(function() {
$('.frame2_2').fadeOut(500);
}, function() {
$('.frame2_2').fadeIn(500);
});
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
background: #333437;
}
.main {
position: relative;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.frame-container {
filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.75));
}
.frame1 {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50.5%) translateY(-49%);
clip-path: polygon(19% 52%, 40% 52%, 40% 90%, 19% 90%);
}
.frame2 {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
clip-path: polygon(38% 0, 68% 0, 68% 100%, 38% 100%);
}
.frame3 {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-51%);
clip-path: polygon(66% 9%, 88% 9%, 88% 82%, 66% 82%);
}
.frame4 {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-47%) translateY(-48%);
clip-path: polygon(86% 0, 100% 0, 100% 29%, 86% 29%);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="main">
<div class="frame-container">
<video class="frame1" src="https://ak9.picdn.net/shutterstock/videos/30858529/preview/stock-footage-cinemagraph-seamless-loop-little-boy-wearing-helmet-and-styrofoam-wings-standing-on-a-skateboard.mp4" type="video/mp4" autoplay="true" loop="true"></video>
</div>
<div class="frame-container">
<video class="frame4" src="https://ak9.picdn.net/shutterstock/videos/30858529/preview/stock-footage-cinemagraph-seamless-loop-little-boy-wearing-helmet-and-styrofoam-wings-standing-on-a-skateboard.mp4" type="video/mp4" autoplay="true" loop="true"></video>
</div>
<div class="frame-container frame_hover">
<video class="frame2 frame2_1" src="https://ak2.picdn.net/shutterstock/videos/30860722/preview/stock-footage-cinemagraph-seamless-loop-little-boy-wearing-helmet-and-styrofoam-wings-standing-on-a-skateboard.mp4" type="video/mp4" autoplay="true" loop="true"></video>
<video class="frame2 frame2_2" src="https://ak9.picdn.net/shutterstock/videos/30858529/preview/stock-footage-cinemagraph-seamless-loop-little-boy-wearing-helmet-and-styrofoam-wings-standing-on-a-skateboard.mp4" type="video/mp4" autoplay="true" loop="true"></video>
</div>
<div class="frame-container">
<video class="frame3" src="https://ak9.picdn.net/shutterstock/videos/30858529/preview/stock-footage-cinemagraph-seamless-loop-little-boy-wearing-helmet-and-styrofoam-wings-standing-on-a-skateboard.mp4" type="video/mp4" autoplay="true" loop="true"></video>
</div>
</div>