标签:form 图片放大 写法 nsf 错误 鼠标 放大 orm cal
html css 部分省略;
假如一个图片想让他慢慢放大,再慢慢回原来形状;
错误写法:
.d1 img:hover{
transform: scale(1.2); //鼠标移上去 图片放大1.2倍;
}
正确写法;
.d1 :hover{
transform: scale(1.2); //鼠标移上去 图片放大1.2倍;
}
.d1 img{
transition: 2s; //分开写的好处是 鼠标移上去图片2s内放大1.2倍.移走之后2s内图片回原形;
}
标签:form 图片放大 写法 nsf 错误 鼠标 放大 orm cal
原文地址:https://www.cnblogs.com/lxc127136/p/12146723.html