我有joomla网站,这是一个页面模板。在用户第一次登录时的主页面上,看起来没有更多内容向下。
我想在顶部说明消息“请向下滚动以查找更多内容”。
有没有办法表明msg显示在顶部,当用户向下滚动时,它会被隐藏????
答案 0 :(得分:0)
有各种方法可以做到这一点,这里有一种可能性:http://jsfiddle.net/panchroma/79mwymc5/
祝你好运!HTML
<div class="scroll-down">Please scroll down for more content</div>
JS
(function ($) {
$(document).ready(function(){
$(function () {
$(window).scroll(function () {
// set distance user needs to scroll before we hide message
if ($(this).scrollTop() < 100) {
$('.scroll-down').fadeIn();
} else {
$('.scroll-down').fadeOut();
}
});
});
});
}(jQuery));