Wordpress Eklenti Bulamadım |
4 Mesajlar | 807 Okunma |
$(document).ready(function(){
$(document).keyup(function(e) {
if (e.keyCode === 27) {
$('.closeVideo').click();
} // esc
});
$("#videos a").click(function(){
var link = $(this).attr("href");
$(".toggle").click();
$("#videoPopup").show();
$("#videoPopup section").html('');
$(".closeVideo").show();
return false;
});
$(".closeVideo").click(function(){
$("#videoPopup").hide();
$(this).hide();
});
});
#videos a{display:inline-block;width:50%;}
img.thumbnail {max-width:100%;}
section#videos {display:flex;padding:0 0.75em;}
#videoPopup{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:100%;height:100%;z-index:99999;background-color:rgba(0,0,0,0.9);border:1px solid #000;display:none;}
#videoPopup section{height:80%;width:80%;margin:0 auto;margin-top:5%;}
#videoPopup .closeVideo{position:absolute;right:50px;top:50px;background-image:url('images/close.svg');background-size:100%;width:64px;height:64px;}