gpt4 book ai didi

javascript - 允许用户调整页面上图像的大小

转载 作者:行者123 更新时间:2023-11-28 04:51:29 24 4
gpt4 key购买 nike

我的网页有一部分包含媒体,主要是图片。我希望用户能够将图片调整为他/她想要的任何尺寸。如果可能的话,我希望用户能够拖动一个 Angular 来调整图片的大小。
这是演示:https://jsfiddle.net/anstw7Lu/
这是HTML:

 <div id="media-section">
<!--Title -->
<div id="media-title">Media</div>

<div id="media-button" class="button-container">
<!-- The panel that will display the content -->
<div id="media-content"><br><br>
Here is my picture<br><img src="http://circleofdocs.com/wp-content/uploads/2014/10/bigstock-Coconut-isolated-on-white-back-70653349.jpg" height=200px width=200px>
<br> I want to be able to resize this picture, make it larger, smaller, ect.
</div>
</div>

最佳答案

CSS3

您可以使用名为 Box Resizing 的新 CSS3 功能。您应该将其添加到您的样式表中:

img {
resize: both;
overflow: auto;
}

引用: http://www.w3schools.com/cssref/css3_pr_resize.asp

您可能还想考虑使用 JavaScript,它可能具有更广泛的浏览器支持。您可以使用 jQuery UI:https://jqueryui.com/resizable/

关于javascript - 允许用户调整页面上图像的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31545041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com