iframe滚动图像消失

时间:2013-09-26 14:52:04

标签: javascript iframe

我有代码:

$(document).on('scroll', function() {
    if ($(this).scrollTop() == 0) {
        $('#arrow').show()('TOP!');
    }
    else {
        $('#arrow').hide()($(this).scrollTop());
    }
});

这使我可以在开始滚动时消失图像,当滚动条点击页面顶部时重新出现..但是。

我想知道是否可以将此JS链接到我的页面上的iframe,并在使用iframe滚动时让图像消失?

0 个答案:

没有答案