How can I move a div from top to bottom by using jQuery?

Elsa

I would like to make an effect like : click a button, and the top div will hide, then bottom div will scroll from top to bottom.

I have finished hide the top div, but it's failed to make the bottom div getting down (?

I think maybe it's because my css and js get something wrong (?), but I'm not sure, and I've modified several times. = (

Here's my javascript code:

$(function(){

        $("#btn1").click(function(){
            $(".slot-top").hide();
            $("#slot ul").animate({ top: "0em" },1500);
            return false;
        });

    });

Here's my code: https://jsfiddle.net/b1mj1c1L/

Simon Kraus

You messed up the jQuery Selector. Instead of $("#slot ul").animate({ top: "0em" },1500); use $(".slot").animate({ top: "0em" },1500);. See here: https://jsfiddle.net/b1mj1c1L/1/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I move a div from top to bottom by using jQuery?

From Dev

How can I move my navigation links from top of the page to the bottom

From Dev

How to move item to top and bottom of selectlist using jquery

From Dev

How to move divs to bottom and top of absolute div

From Dev

How can I animate my div to go from top to bottom whithout interfering with the content inside?

From Dev

How can i present/dismiss viewcontroller from bottom to top in navigationcontroller?

From Dev

how to move "div" bottom to top and top to bottom when click on same "div"

From Dev

How do I move PriorCourtFileNumber element from the bottom to the top of the input document?

From Dev

How do I move PriorCourtFileNumber element from the bottom to the top of the input document?

From Dev

How can I use jQuery to move multiple instances of a div?

From Dev

How to move "Show Applications" button from bottom to top in launcher?

From Dev

How can I move this text to the top

From Dev

How do I make a div top to be the bottom of other div

From Dev

How to move items/buttons from one div to another using JQuery?

From Dev

How do I make my div with a background image and no content show and extend from the top to bottom of the page?

From Dev

How can i detect the children element is overflowed the parent (top, left, right and bottom) in jquery?

From Dev

How can I read lines from bottom up using C?

From Dev

Align div from bottom to top

From Dev

Rotating Div from bottom to top

From Dev

Moving an div from the top left corner to bottom right using css

From Dev

How to make object with fixed positioning move from top of my browser window to the bottom as I scroll down my website?

From Dev

How can I remove extra top-bottom spacing from UIAlertView?

From Dev

How can I make a vertical line change opacity from top to bottom of a line

From Dev

How Can I crop an image to smaller size from left to right and top to bottom with openCV Python3.5

From Dev

how can i begin scroll at the bottom of a div

From Dev

how to scroll slowly from top to bottom and bottom to top when click on same div?

From Dev

Move navbar from bottom to top of browser

From Dev

Fade and translate the "position:absolute" element from top to bottom using jquery

From Dev

Animate Canvas Fill() From Bottom To Top Using JavaScript / jQuery

Related Related

  1. 1

    How can I move a div from top to bottom by using jQuery?

  2. 2

    How can I move my navigation links from top of the page to the bottom

  3. 3

    How to move item to top and bottom of selectlist using jquery

  4. 4

    How to move divs to bottom and top of absolute div

  5. 5

    How can I animate my div to go from top to bottom whithout interfering with the content inside?

  6. 6

    How can i present/dismiss viewcontroller from bottom to top in navigationcontroller?

  7. 7

    how to move "div" bottom to top and top to bottom when click on same "div"

  8. 8

    How do I move PriorCourtFileNumber element from the bottom to the top of the input document?

  9. 9

    How do I move PriorCourtFileNumber element from the bottom to the top of the input document?

  10. 10

    How can I use jQuery to move multiple instances of a div?

  11. 11

    How to move "Show Applications" button from bottom to top in launcher?

  12. 12

    How can I move this text to the top

  13. 13

    How do I make a div top to be the bottom of other div

  14. 14

    How to move items/buttons from one div to another using JQuery?

  15. 15

    How do I make my div with a background image and no content show and extend from the top to bottom of the page?

  16. 16

    How can i detect the children element is overflowed the parent (top, left, right and bottom) in jquery?

  17. 17

    How can I read lines from bottom up using C?

  18. 18

    Align div from bottom to top

  19. 19

    Rotating Div from bottom to top

  20. 20

    Moving an div from the top left corner to bottom right using css

  21. 21

    How to make object with fixed positioning move from top of my browser window to the bottom as I scroll down my website?

  22. 22

    How can I remove extra top-bottom spacing from UIAlertView?

  23. 23

    How can I make a vertical line change opacity from top to bottom of a line

  24. 24

    How Can I crop an image to smaller size from left to right and top to bottom with openCV Python3.5

  25. 25

    how can i begin scroll at the bottom of a div

  26. 26

    how to scroll slowly from top to bottom and bottom to top when click on same div?

  27. 27

    Move navbar from bottom to top of browser

  28. 28

    Fade and translate the "position:absolute" element from top to bottom using jquery

  29. 29

    Animate Canvas Fill() From Bottom To Top Using JavaScript / jQuery

HotTag

Archive