1

私のWebページには同じ名前の画像がたくさんありますが、次のような別のフォルダーにあります

<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>

私のページにはたくさんの画像があります。これは単なるサンプルです。アプリケーションを実行すると、読み込みに時間がかかり、突然クラッシュします...なぜですか?

4

3 に答える 3

0

この静的 html しかありませんか、それとも html 以外に php やその他のコードがありますか? ある場合は、当社に提供してください。

非常に小さな画像を html のみでロードするだけで問題はないはずです。別のブラウザで試してみましたか?

于 2013-09-13T10:43:20.043 に答える
0

異なる場所にファイルがあると、ページのリンクに影響を与えます。これが、パスが非常に重要である理由です。パスは、現在のドキュメントとは別のフォルダーにあるファイルへのリンクを作成するために使用されます。リンクを行うには、ブラウザがファイルを見つけられるように、ファイルの正しい場所またはパスを指定する必要があります。

<div class="wrapper">
  <div id="pictures1" class="effect_1">
    <div><img src="/pictures/sample/1/01/1/01.jpg" width="125" height="188"><img /></div>
    <div><img src="/pictures/sample/1/01/1/02.jpg" width="125" height="188"><img /></div>
 </div>
  <div id="pictures2" class="effect_2">
    <div><img src="/pictures/sample/1/02/1/01.jpg" width="125" height="188"><img /></div>
    <div><img src="/pictures/sample/1/02/1/02.jpg" width="125" height="188"><img /></div>
</div>
于 2013-09-13T11:25:49.953 に答える