制作一个jquery img循环动画消失
我正在使用 Jquery Cycle 插件来创建淡入淡出背景。不过,我想看看是否有可能在您从菜单中打开手风琴选项卡后使其消失,并在它们全部关闭后再次出现。这是该网站的链接,以便您有更好的想法。 网站
这是我正在使用的 jquery 循环插件:
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
这是幻灯片(手风琴)我正在使用的脚本:
<script type="text/javascript">
$('a.slidecontrol').click(function(){
$(".display").not($(this).next()).slideUp();
var $this = $(this);
var divID = $this.attr("id").replace("slidecontrol_", "slidedisplay_");
var $div = $('#'+divID);
if ($div.is(':visible')) {
$div.slideUp(500);
} else {
$div.slideDown(500);
}
return false;
});
</script>
谢谢!索菲
I am using a Jquery Cycle Plugin to create a fadein background. However I wanted to see if it is possible to make it go away once you open an accordion tab from the menu and appear again once they are all closed. Here is the link to the website so that you have a better idea.
WEBSITE
this is the jquery cycle plugin I'm using:
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
and this is THE SLIDE (ACCORDION) SRIPT i'm using:
<script type="text/javascript">
$('a.slidecontrol').click(function(){
$(".display").not($(this).next()).slideUp();
var $this = $(this);
var divID = $this.attr("id").replace("slidecontrol_", "slidedisplay_");
var $div = $('#'+divID);
if ($div.is(':visible')) {
$div.slideUp(500);
} else {
$div.slideDown(500);
}
return false;
});
</script>
Thanks! Sofi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
click()
中添加$('.slideshow').cycle('pause')
怎么样?更多详细信息请参见:http://jquery.malsup.com/cycle/pause.html
根据您的评论进行编辑:
What about adding a
$('.slideshow').cycle('pause')
in yourclick()
?More details here: http://jquery.malsup.com/cycle/pause.html
Edit based on your comments: