View Single Post
Old 12-08-2015, 09:55 PM   #2
maya1
Registered User
 
Join Date: Aug 2015
Posts: 235
This script is used for create slideshow page.


<head>
<script type="text/javascript">

var slideimages = new Array() // create new array to preload images
slideimages[0] = new Image() // create new instance of image object
slideimages[0].src = "firstcar.gif" // set image src property to image path, preloading image in the process
slideimages[1] = new Image()
slideimages[1].src = "secondcar.gif"
slideimages[2] = new Image()
slideimages[2].src = "thirdcar.gif"

</script>
</head>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
/


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
/


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
/


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.




To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
maya1 is offline   Reply With Quote