标签:应用 元素属性 prope pac 代码 代码实现 负数 lin font
用于规定元素不同状态间变化所需时间,属性值为一个时间值,单位(s/ms); 初次接触此属性觉得有些麻烦,通过一段时间的学习,还是简单做下过度知识的整理。
div
{
width:100px;
height:100px;
background:yellow;
transition:width 2s linear 2s, height 2s linear 2s;
}
div:hover
{
width:200px;
height:200px;
}
div
{
transition-property: width;
transition-duration: 1s;
transition-timing-function: linear;
transition-delay: 200ms;
}
div:hover
{
width:200px;
height:200px;
}
鼠标悬停时旋转实现方法:
div{
width:100px;
height:100px;
transition-duration:2s;
transition-delay:2s;
}
div:hover{
transform:rotatez(45deg)
transform:rotatex(45deg)
transform:rotatey(45deg)
}
鼠标悬停移动实现代码:
div{
width:100px;
height:100px;
transition-duration:300ms;
}
div:hover
{
transform:translate(50px,50px)
}
鼠标悬停时缩放实现代码:
div{
width:100px;
height:100px;
transition:2s;
}
div:hover
{
transform:scale(0.4,2);
}
常用于改变元素盒子形状 实现代码:
div{
width:100px;
height:100px;
transform:slew(20deg,40deg);
}
标签:应用 元素属性 prope pac 代码 代码实现 负数 lin font
原文地址:https://www.cnblogs.com/xhh776554/p/9032725.html