Advertisement
Guest User

Untitled

a guest
Nov 9th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. <button onclick="Slide()">Slide</button>
  2.  
  3. <img id="1" src="assets/6.png" style="width: 300px; height: 300px">
  4. <img id="2" class="mySlides" src="assets/5.png" style="width: 300px; height: 300px">
  5.  
  6.     <style>
  7.     .mySlides{
  8.         display: none;
  9.     }
  10.     </style>
  11. <script>
  12.     function Slide(){
  13.     $(document).ready(function(){
  14.           $("#1").hide("#1");
  15.         });
  16.     document.getElementById("2").style.display = "block";
  17.     }
  18.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement