Fadeout Youtube视频点击事件没有静音

时间:2015-05-24 10:32:23

标签: javascript jquery

如何在点击视频时淡出Youtube视频,没有静音背景音乐。?

jQuery(document).ready(function() {
    jQuery("div.ytp-scalable-icon-shrink").click(function() {
        jQuery("#auto_hide").delay(15000).fadeOut("slow");
    });
});

1 个答案:

答案 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);
  });
});