当 jquery 幻灯片显示为 #1 时的 fadeOut 元素
有问题的网站:http://notlaura.com/dev/smfa/index-all2。 php
我希望“返回列表”按钮 (#to-list
) 仅在 Coda 滑块的第一个面板隐藏时出现。这将一直有效,直到遇到带有箭头导航的第一个面板为止。我的代码是:
$("#to-list").hide();
$("li.name,a#nl").click(function(event){
$("#to-list").fadeIn(900);
});
$("#to-list").click(function(event){
$("#to-list").fadeOut(900);
});
我尝试检查 $('a[href$="#1"]')
但箭头 href 只有 #
,所以这不会工作。还尝试使用 window.location
对 URL 进行条件判断,并检查面板是否隐藏,if( $("#list").is(":visible") ) {}
但没有成功。非常感谢任何帮助 - 提前致谢!
The site in question: http://notlaura.com/dev/smfa/index-all2.php
I want the 'back to list' button (#to-list
) only to appear when the first panel of the Coda Slider is hidden. This works until the first panel is encountered with the arrow navigation. My code is:
$("#to-list").hide();
$("li.name,a#nl").click(function(event){
$("#to-list").fadeIn(900);
});
$("#to-list").click(function(event){
$("#to-list").fadeOut(900);
});
I tried checking for $('a[href$="#1"]')
but the arrow hrefs are only #
, so that doesn't work. Also tried a conditional for the URL with window.location
, and checking if the panel is hidden, if( $("#list").is(":visible") ) {}
But no success. Any help is greatly appreciated - thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试
window.location.hash
You could try
window.location.hash