Friday, 13 September 2013

does same image name but from different folder affect performance in web application?

does same image name but from different folder affect performance in web
application?

i have lots of images in my we page with same name but in different folder
like
<div class="wrapper">
<div id="pictures1" class="effect_1">
<div><img src="pictures/sample/1/01/1/01.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/02.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/03.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/04.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/05.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/06.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/07.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/08.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/09.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/01/1/10.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/x.gif" width="125" height="188"></div>
</div>
<div id="pictures2" class="effect_2">
<div><img src="pictures/sample/1/02/1/01.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/02.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/03.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/04.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/05.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/06.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/07.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/08.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/09.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/1/02/1/10.jpg" width="125"
height="188"></div>
<div><img src="pictures/sample/x.gif" width="125" height="188"></div>
</div>
..................... up to 09/../../.jpg
</div>
there are lots of images in my page this is just for sample, when i run my
application it takes too much time to load and suddenly crash...why?

No comments:

Post a Comment