Advertisement
yskang

threejs-minecraft-22

Apr 21st, 2020
1,624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.37 KB | None | 0 0
  1. // js/index.js
  2. const animateBtn = document.getElementById( 'animate' );
  3.  
  4. animateBtn.addEventListener( 'click', function() {
  5.     creeper.toggleAnimate();
  6. });
  7.  
  8. // css/index.css
  9. button#animate {
  10.     z-index: 10;
  11.     position: absolute;
  12. }
  13.  
  14. <!-- index.html -->
  15. <body>
  16.     <button type="button" id="animate">Animate</button>
  17.     <!-- ... -->
  18. </body>
  19.  
  20. <!-- ... -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement