如何在html中缩放图像的一部分?

时间:2016-02-29 06:48:47

标签: html css image zoom

我想在html中缩放图像的一部分。 为了在html中显示图像的一部分,我在第一条评论中编写了代码。 我想缩放这个显示的部分。我怎么能这样做。

<!DOCTYOE html>
<html>

<head>
    <style>
        .container {
            position: relative;
        }

        #clip {
            position: absolute;
            clip: rect(0, 120, 80px, 0);
            /* clip: shape(top, right, bottom, left); NB 'rect' is the only available option */
        }

        </div>
    </style>
</head>
<div class="container"> <img src="images10.png" /> </div>
<div class="container"> <img id="clip" src="images10.png" /> </body>

</html>

1 个答案:

答案 0 :(得分:1)

您可以尝试使用以下代码缩放指定的部分:

#clip { zoom: 150%; }

仅供参考:More info here