Guest User

Untitled

a guest
Jul 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <div id="movable">
  2. <p>Hello</p>
  3. </div>
  4.  
  5. <a id="move_box" href="#">Move box</a>
  6.  
  7. #movable {
  8. background-color: blue;
  9. height: 15px;
  10. weight: 15px;
  11. color: white
  12. }
  13.  
  14. $('move_box').addEvent('click', function(event) {
  15. event.stop();
  16. new Fx.Move('movable', {
  17. offset: {x: 50, y: 50}
  18. }).start();
  19. });
Add Comment
Please, Sign In to add comment