Posts

Showing posts with the label Auto

Auto-image slider with your smart phone(HTML and javaScript)

Image
Creating an auto image slider, you need the knowledge of HTML and javaScript...... But if no knowledge about, you which to create like this....infact you can just copy and the codes down below . Here we go......into the journey. Html :  Using HTML you have place some image with HTML and class them for javaScript to execute. <body> <div class= "mySlides" >   <img src= "Url or name of the image" width= "100%" height= "400px" /> </div> <div class= "mySlides" > <img src= "Url or name of the image  " width= "100%" height= "400px" /> </div> <div class= "mySlides" > <img src= "Url or next of the image" width= "100%" height= "400px" /> </div> Now it's time to add javascript. <script> var slideIndex = 0; showSlides(); function showSlides() {   var i;   var slides = document.getElementsB...