application.js 409 B

1234567891011121314151617
  1. $(document).ready(function(){
  2. $(".object").draggable({
  3. start: function(){
  4. $(".object").css({"z-index": 0});
  5. $(this).css({"z-index": 100});
  6. }
  7. });
  8. function nombre(value){
  9. return Math.floor(Math.random() * value);
  10. }
  11. $(".object").each(function(){
  12. $(this).css({"top": nombre(80) + "%", "left": nombre(90) + "%"});
  13. });
  14. });