Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
  4. <script>
  5. $(document).ready(function(){
  6. var s = $('.a').css('left',40).css('left');
  7. $('.a').html(s);
  8. });
  9. </script>
  10.  
  11. <style>
  12. .container {
  13. position:relative;
  14. width:300px;
  15. height:300px;
  16. background-color:yellow;
  17. padding:20px
  18. }
  19. .a {
  20. padding:40px;
  21. position:absolute;
  22. background-color:red;
  23. width:100px;
  24. height:100px;
  25. color:black;
  26. left:auto;
  27. transition:all 1s ease
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class='container'>
  33. <div class='a'></div>
  34. </div>
  35. </body>
  36. </html>
  37.  
  38. $('.a').css('left', '40px');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement