我想在我的网页上展示大约5-8个图像,一个图像是一张图像,但我希望这些图像能够先上载,而不是每次把图像上调。
我看到了一些例子,他们在网页上有所有图像(隐藏),例如:
<a href=""><img id="img1" src="images/image1.png" class="image" alt="" /></a>
<a href=""><img id="img2" src="images/image1.png" class="image" alt="" /></a>
<a href=""><img id="img3" src="images/image1.png" class="image" alt="" /></a>
the弄目前的形象。
我有一个形象,即改变这种形象,使新形象从阵列走。
SwitchNextImage: function(){
var theimg=document.getElementById("imgContainer");
this.currentIndex = this.currentIndex+ 1 == this.totalImageCount ? 0 : this.currentIndex + 1;
theimg.src=this.slideimages[this.currentIndex].src;
}
The first method is obviously faster loading. But requies static links.
My questions is how can I make my method more faster loading?