开发者

Move and scale image in html and javascript

开发者 https://www.devze.com 2023-02-18 17:24 出处:网络
I have an image tag, size 100x75. 开发者_如何学编程The image it is holding is scaled down from 150x112. I don\'t want the image scaled down, that much, but I still want the container img tag to be 100

I have an image tag, size 100x75. 开发者_如何学编程The image it is holding is scaled down from 150x112. I don't want the image scaled down, that much, but I still want the container img tag to be 100x75, thus cliipping off some of the outer parts of the image. How would I do this?


css:
.wrapper {
    width    : 100px;
    height   : 75px;
    overflow : hidden;
}

html:
<div class="wrapper">
    <img src="...">
</div>
0

精彩评论

暂无评论...
验证码 换一张
取 消