最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - Javascript move div onClick - Stack Overflow

programmeradmin1浏览0评论

I'm trying to get a div #sidebar that rests above my main #stream div to move from position left: 565px; to position left: 0px; onClick of one image in the #sidebar div (the red arrow in the images below), and do the reverse onClick of the same image. I know I have to use JavaScript, but I have no idea what the code would be. If possible, I would like to animate the div move too.

The pre-clicked state (the arrow will be my link):

The post-clicked state:

Thanks in advance!

I'm trying to get a div #sidebar that rests above my main #stream div to move from position left: 565px; to position left: 0px; onClick of one image in the #sidebar div (the red arrow in the images below), and do the reverse onClick of the same image. I know I have to use JavaScript, but I have no idea what the code would be. If possible, I would like to animate the div move too.

The pre-clicked state (the arrow will be my link):

The post-clicked state:

Thanks in advance!

Share Improve this question asked Feb 23, 2013 at 9:23 OliverWOliverW 491 gold badge1 silver badge12 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 4

If you want to animate it using animate have a look at this. It should get you pointed in the right direction:

http://jsfiddle/3DpfJ/5/embedded/result/ - Full screen result

http://jsfiddle/3DpfJ/5/ - source code

So what I simply did was this:

$(function()
{
  var expanded = false;
  $('#sidebar').click(function()
                      {
                          if (!expanded)
                          {
                              $(this).animate({'left' : '0px'}, {duration : 400});
                              expanded = true;
                          }
                          else
                          {
                             $(this).animate({'left' : '565px'}, {duration: 400});
                              expanded = false;
                          }
                      });
 });

This is probably the simplest way of doing it via animation. Duration is set to 400 so it will take 0.4 seconds to animate. Adjust as you please.

This script should be executed as soon as you load the page to ensure that the expand works. You will want to create <script type="text/javascript"></script> tag in the header and put the code there.

Hope it works for you.

$('#sidebar').click(function(){
    $(this).animate({"left": "0"});
});

jquery uses toggle to handle this. It works better than a regular "animate" because it bines the hide and show into one function (toggle).

You might need to do some tweaking to fit your needs but this should get you started:http://jqueryui./toggle/

发布评论

评论列表(0)

  1. 暂无评论