第十节 css3动画之transform斜切
2021-04-06 20:27
标签:code style orm auto back ack round doctype ansi 第十节 css3动画之transform斜切 标签:code style orm auto back ack round doctype ansi 原文地址:https://www.cnblogs.com/kogmaw/p/12492483.html 1 DOCTYPE html>
2 html lang="en">
3 head>
4 meta charset="UTF-8">
5 title>Documenttitle>
6 style type="text/css">
7 .box{
8 width: 100px;
9 height: 100px;
10 background-color: gold;
11 margin: 50px auto 0;
12 transition: all 0.5s ease 0s; /* 同时加入动画效果 */
13 }
14
15 .box:hover{
16 /* transform位移比定位位移的性能更高,因为其不影响整体布局,建议使用transform位移 */
17 transform: skew(45deg); /* x轴斜切45度 */
18 transform: skew(0,45deg); /* y轴斜切45度 */
19 }
20 style>
21 head>
22 body>
23 div class="box">div>
24 body>
25 html>
文章标题:第十节 css3动画之transform斜切
文章链接:http://soscw.com/index.php/essay/72141.html