Advertisement
PAXSemperFidelis

java

Nov 29th, 2021
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. $("#apple1").click(
  2. function myMove() {
  3. $("#apple1").animate({
  4. top: "84%",left:Math.floor(Math.random() * 4) +22 + '%'
  5. }, 300)
  6. })
  7. $("#apple2").click(
  8. function myMove() {
  9. $("#apple2").animate({
  10. top: "83%",left:Math.floor(Math.random() * 4) +22 + '%'
  11. }, 300)
  12. })
  13. $("#apple3").click(
  14. function myMove() {
  15. $("#apple3").animate({
  16. top: "85%",left:Math.floor(Math.random() * 4) +22 + '%'
  17. }, 300)
  18. })
  19.  
  20. <img src="images/apple.png" class="apple" id="apple1" alt="apple" style= "top: 40%; left: 60%;" >
  21. <img src="images/apple.png" class="apple" id="apple2" alt="apple" style= "top: 40%; left: 70%;" >
  22. <img src="images/apple.png" class="apple" id="apple3" alt="apple" style= "top: 50%; left: 60%;">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement