Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
journey-zhuang authored Dec 2, 2024
1 parent 8853e63 commit 971e0fd
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -292,22 +292,30 @@ <h2 class="subtitle has-text-centered">
<section class="hero is-light is-small">
<div class="hero-body">
<div class="container">

<div id="results-carousel" class="carousel results-carousel">
<div class="item item-chair">
<img src="./static/images/more_result_chair.png" alt="Chair Image" height="100">
<img src="./static/images/more_result_chair.png" alt="Chair Image" height="100%" class="more-result">
</div>
<div class="item item-hotdog">
<img src="./static/images/more_result_hotdog.png" alt="Hotdog Image" height="100">
<img src="./static/images/more_result_hotdog.png" alt="Hotdog Image" height="100%" class="more-result">
</div>
<div class="item item-mic">
<img src="./static/images/more_result_mic.png" alt="Mic Image" height="100">
<img src="./static/images/more_result_mic.png" alt="Mic Image" height="100%" class="more-result">
</div>
</div>

<style>
.more-result {
width: auto; /* 宽度自动,保持图片比例 */
height: 100px; /* 设置图片高度 */
}
</style>

</div>
</div>
</section>






Expand Down

0 comments on commit 971e0fd

Please sign in to comment.