Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
369 views
in Technique[技术] by (71.8m points)

Can CSS realize oblique cutting of pictures like photoshop skew

Want to edit the picture through CSS, realize the function of oblique cutting similar to Photoshop, the picture can be automatically scaled

Clip path can achieve a similar effect, but the image can not be tilted or shrunk, can only be cropped, is there any way to achieve it

Origin image

Expected image with css3

question from:https://stackoverflow.com/questions/65857973/can-css-realize-oblique-cutting-of-pictures-like-photoshop-skew

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

<html>

<head></head>

<body>
<div
    style="border: 1px solid red; width: 460px; height: 463px; clip-path: polygon(0px 0px, 462px 0px, 462px 291px, 0px 465px);">
    <img src="https://i.stack.imgur.com/KlSU7.jpg">
</div>
</body>

</html>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...