如何在点击视频时淡出Youtube视频,没有静音背景音乐。?
jQuery(document).ready(function() {
jQuery("div.ytp-scalable-icon-shrink").click(function() {
jQuery("#auto_hide").delay(15000).fadeOut("slow");
});
});
答案 0 :(得分:1)
Do not use fade out use opacity
instead.
jQuery(document).ready(function() {
jQuery("div.ytp-scalable-icon-shrink").click(function() {
jQuery("#auto_hide").delay(15000).aniamte({
oapcity: "0"
}, 1000);
});
});