您好,登录后才能下订单哦!
本篇文章给大家分享的是有关css3如何实现旋转图像,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
代码块
html页面:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>rotate image</title>
</head>
<body>
<div class="polaroid rotate_left">
<img src="pulpitrock.jpg" alt="" width="284" height="213">
<p class="caption">The pulpit rock inLysefjorden,Norway.</p>
</div>
<div class="polaroid rotate_right">
<img src="cinqueterre.jpg" alt="" width="284" height="213">
<p class="caption">Monterosso al Mare. One of the five villages in Cinque Terre.</p>
</div>
</body>
</html>
css样式:
<style type="text/css" media="screen">
body{
margin:30px;
background-color: #E9E9E9;
}
div.polaroid{
width: 294px;
padding: 10px 10px 20px 10px;
border:1px solid #BFBFBF;
background-color: #F0F8FF;
box-shadow: 4px 4px 6px #aaa;
border-radius: 5px;
}
div.rotate_left{
float: left;
-ms-transform:rotate(7deg);
-webkit-transform:rotate(7deg);
transform:rotate(7deg);
}
div.rotate_right{
float: left;
-ms-transform:rotate(-10deg);
-webkit-transform:rotate(-10deg);
transform:rotate(-10deg);
}
</style>
以上就是css3如何实现旋转图像,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。