Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. Jqueryy
  7. </title>
  8. <link rel="stylesheet" type="text/css" href="css/style.css">
  9. </head>
  10. <body>
  11. <h1>Sliderino</h1>
  12. <div class="container">
  13. <div class="slider">
  14. <img id="active" src="img/img1.jpg" style="width: 100%">
  15. <img src="img/img2.jpg" style="width: 100%">
  16. <img src="img/img3.jpg" style="width: 100%">
  17. <img src="img/img4.jpg" style="width: 100%">
  18. <img src="img/img5.jpg" style="width: 100%">
  19. <img src="img/img6.jpg" style="width: 100%">
  20. <img src="img/img7.jpg" style="width: 100%">
  21. </div>
  22. <i id="prev" class="fas fa-arrow-left"></i>
  23. <i id="next" class="fas fa-arrow-right"></i>
  24.  
  25.  
  26. </div>
  27. <script src="https://kit.fontawesome.com/cc6dc71f92.js"></script>
  28. <script
  29. src="https://code.jquery.com/jquery-3.4.1.min.js"
  30. integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
  31. crossorigin="anonymous">
  32. </script>
  33.  
  34.  
  35.  
  36. <script>
  37. $(".fas.fa-arrow-left").click(function(){
  38. alert("idemejako");
  39. })
  40. $(".fas.fa-arrow-right").click(function(){
  41. alert("ideme poslabo");
  42. })
  43. </script>
  44.  
  45.  
  46.  
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement