Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <style>
  2.     .cursor{
  3.         background:red;
  4.     }
  5. </style>
  6.  
  7. <div id="parent" style="width:100%; position:relative;">
  8.     {{image}}
  9. </div>
  10.  
  11.  
  12. <ol id="elements">
  13. </ol>
  14.  
  15. <script>
  16.     $(function(){
  17.         var arr = {{liste_curseurs:__raw}};
  18.         $("#elements").empty();
  19.        
  20.         arr.forEach(function(elem){
  21.             $("#elements").append("<li>"+elem.description+"</li>");
  22.             $("#parent").append("<div class='cursor' style='position:absolute; top:"+elem.posY+"%; left:"+elem.posX+"%'>"+elem.title+"</div>");
  23.         })
  24.     })
  25. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement