使用 Jquery 调整 DIV 内图像的大小

发布于 2024-12-09 07:22:51 字数 757 浏览 0 评论 0原文

我在这种情况下需要帮助...我正在尝试开发一个横幅旋转器(全宽),但我没有找到任何解决方案来拉伸/调整幻灯片图像(在 div 中)100% 宽度并保持宽高比比率。我想用 jQuery 来做到这一点...有谁知道一个 JQuery 插件可以解决这种情况!

我想要类似 this 的东西,但应用于一个类,因为我不想要这个到所有图像!

请检查下面我的代码示例。非常感谢! :)

<!-- START BANNER WRAPPER -->
<div id="banner-wrapper">
<div id="banner-full-width">
<div id="main-slider">

  <div class="slide">
    <div class="image">
      <img src="" /> <!-- This is the image i want to fit inside of 100% width div -->
    </div>

    <div class="info">...</div>
  </div>

</div>
</div>
</div>
<!-- END BANNER WRAPPER -->

I need help with this situation... i´m trying to develop a banner rotator (full width), but i didn´t find any solution to strech/resize a slide image (indide a div) 100% width and maintain the aspect ratio. I want to do it with jQuery... does anyone knows a JQuery plugin that solves this situation!!

I Want something sililar of this , but applied to a class, because i don´t want this to all images!!!

Please check below an example of my code. Many thanks in advance!! :)

<!-- START BANNER WRAPPER -->
<div id="banner-wrapper">
<div id="banner-full-width">
<div id="main-slider">

  <div class="slide">
    <div class="image">
      <img src="" /> <!-- This is the image i want to fit inside of 100% width div -->
    </div>

    <div class="info">...</div>
  </div>

</div>
</div>
</div>
<!-- END BANNER WRAPPER -->

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

oО清风挽发oО 2024-12-16 07:22:51

好的 CSS 怎么样?

.image img {
    width:100%;
    height:auto;
}

How about good ol' CSS?

.image img {
    width:100%;
    height:auto;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文