JQuery 切换帮助

发布于 2024-11-04 18:42:05 字数 408 浏览 0 评论 0原文

这里的代码打开一个 div 并为其设置动画..对吧?是的,这对我来说很好......

jQuery("a.trigger").click(function(){
    $("#main").animate({
      height: "+=300px"
    }, 1500 );
    return false;
});

我的问题是,我如何切换它?我可以打开它,但我如何关闭它...意味着...向上滑动 200px 高度。你知道我的意思吗? 我单击“阅读更多”(a.trigger),它会将高度动画设置为+200px..但我也想将其动画设置回-200px。

我被困住了,因为我不是 jquery 专家。我尝试使用 SlideToggle 或切换,但它对我不起作用......

感谢您的帮助!

this code here opens a div and animates it.. right? Yes, this works for me fine...

jQuery("a.trigger").click(function(){
    $("#main").animate({
      height: "+=300px"
    }, 1500 );
    return false;
});

My questions is, how can i toggle it? I can open it but how i close it...means... slideup 200px in height. Do you know what I mean?
I click on "read more" (a.trigger) and it animtes the height +200px.. but I also want to animte it back to -200px.

And I'm stuck because I'm not an jquery expert. I tried to use SlideToggle or toggle but it hasn't worked for me....

thanks for you help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

一个人的夜不怕黑 2024-11-11 18:42:05

也许通过设置一个持有状态的类

jQuery("a.trigger").click(function(){
    if (!$("#main").is(".open")) {
        $("#main").animate({
            height: "+=300px"
        }, 1500 ).addClass('open');
    } else {
        $("#main").animate({
            height: "-=300px"
        }, 1500 ).removeClass('open');
    }
    return false;
});

mabey by setting a class which holds the state

jQuery("a.trigger").click(function(){
    if (!$("#main").is(".open")) {
        $("#main").animate({
            height: "+=300px"
        }, 1500 ).addClass('open');
    } else {
        $("#main").animate({
            height: "-=300px"
        }, 1500 ).removeClass('open');
    }
    return false;
});
梦初启 2024-11-11 18:42:05

您正在寻找切换功能。

jQuery("a.trigger").toggle(function(){
  $("#main").animate({
    height: "+=300px"
    }, 1500 );
    return false;
  }, function(){
  $("#main").animate({
    height: "-=300px"
  }, 1500 );
  return false;
});

You are looking for the toggle function.

jQuery("a.trigger").toggle(function(){
  $("#main").animate({
    height: "+=300px"
    }, 1500 );
    return false;
  }, function(){
  $("#main").animate({
    height: "-=300px"
  }, 1500 );
  return false;
});
梦在深巷 2024-11-11 18:42:05

如果我正确地阅读了这篇文章,那么这就是您想要做的。

http://jsfiddle.net/JqN4p/

If i am reading this correctly, then this is what you want to do.

http://jsfiddle.net/JqN4p/

烧了回忆取暖 2024-11-11 18:42:05
jQuery("a.trigger").toggle(function()
{
    $("#main").animate (... height+=300));
}, function()
{
    $("#main").animate (... height-=300));
});

或者你可以使用slideToggle:

jQuery("a.trigger").click(function(){ $("#main").slideToggle(); });
jQuery("a.trigger").toggle(function()
{
    $("#main").animate (... height+=300));
}, function()
{
    $("#main").animate (... height-=300));
});

alternatively you can use slideToggle:

jQuery("a.trigger").click(function(){ $("#main").slideToggle(); });
枯叶蝶 2024-11-11 18:42:05
jQuery("a.trigger").click(function(){
   if( $("#main").hasClass('active') )
        value  = -300;
   else
      value = 300; 
    $("#main").addClass('active').animate({
      height: "+=" + value + 'px'
    }, 1500 );
    return false;
});

这是一个工作小提琴
http://jsfiddle.net/QVJPZ/

jQuery("a.trigger").click(function(){
   if( $("#main").hasClass('active') )
        value  = -300;
   else
      value = 300; 
    $("#main").addClass('active').animate({
      height: "+=" + value + 'px'
    }, 1500 );
    return false;
});

Here's a working fiddle
http://jsfiddle.net/QVJPZ/

朦胧时间 2024-11-11 18:42:05

jQuery SlideToggle 会很好地为您完成此操作:

$('a.trigger').click(function() {
  $('#main').slideToggle('slow', function() {
    // Animation complete.
  });
});

http://api.jquery.com/slideToggle/

jQuery slideToggle will do this for you nicely:

$('a.trigger').click(function() {
  $('#main').slideToggle('slow', function() {
    // Animation complete.
  });
});

http://api.jquery.com/slideToggle/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文