我遇到了類似的問題,但不知道如何最好地實現答案張貼。我使用的是jssor插件,每個縮略圖的大小都不相同。我需要讓它們符合它們列出的尺寸,但是按照現在設置的方式,每個尺寸都設置爲72px x 72px。我已經嘗試將寬度和高度設置爲100%,但不確定究竟應該如何去做,因爲它並不真正起作用。我是否將此代碼添加到此代碼中或我缺少什麼?感謝您的幫助圖像縮略圖大小與JSSor
<div u="slides" style="cursor: move; background: black;">
<div u="prototype" class="p" style="POSITION: absolute; WIDTH: 72px; HEIGHT: 72px; TOP: 0; LEFT: 0;">
<div class="o" style="position:absolute;top:1px;left:1px;width:72px;height:72px;overflow:hidden;">
<ThumbnailTemplate class="b" style="width:72px;height:72px; border: none;position:absolute; TOP: 0; LEFT: 0;"></ThumbnailTemplate>
<div class="i"></div>
<ThumbnailTemplate class="f" style="width:72px;height:72px;border: none;position:absolute; TOP: 0; LEFT: 0;"></ThumbnailTemplate>
</div>
</div>
下面是實際的代碼。我找到了信息,但不知道它在這裏的工作原理。我正在使用一個PHP腳本,但我發現它有點複雜。感謝: foreach ($result as $row) { echo "<div> <p><small><span style=\"color:white\">To explore images click on smaller image below to start.</span></small></p> <a href=\"http://mirrorofrace.org/TemplateZoom.php?photo_id={$row['photo_id']}\" target=\"_blank\"><img u=\"image\" src=\"http://mirrorofrace.org/{$row['full_size']}\" alt=\"\" ></a> <img u=\"thumb\" src=\"http://mirrorofrace.org/{$row['thumbnail']}\" alt=\"\" style=\"border: 0\"> <br><span style=\"color:white\">Click Image to Zoom <a href=\"../gallery/profile.php?photo_id={$row['photo_id']}\">Info Page</a> {$row['figure_1']}</span> </div>"; } ?> </div>
請在這裏發表您的代碼 – jssor
不知道在哪裏張貼code.I看不到的地方 – user3486160