Advertisement
gabs_avila

Untitled

Mar 1st, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <link href="jquery-ui-1.12.1/jquery-ui.css" rel="stylesheet">
  6. <style type="text/css">
  7. #re{
  8. width: 100px;
  9. height: 100px;
  10. background-color: blue;
  11. }
  12. #also{
  13. width: 100px;
  14. height: 100px;
  15. background-color: red;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="drag">drag horizontal</div>
  21. <div style="width: 400px; height: 300px; background-color: yellow;">
  22. <span>im stuck</span>
  23. </div>
  24. <div id="re"> </div>
  25. <div id="also"></div>
  26. <script src="jquery-ui-1.12.1/external/jquery/jquery.js"></script>
  27. <script src="jquery-ui-1.12.1/jquery-ui.js"></script>
  28. <script type="text/javascript">
  29. $("#drag").draggable({axis:"x"});
  30. $("span").draggable({containment:"parent"});
  31. $("#re").resizable({grid:50, alsoResize:"#also", resize: function(event, ui) {
  32. if ($("#re").width() > 300) {
  33. alert("big enaugh");
  34. }
  35. }});
  36. </script>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement