版权声明:本文为博主原创文章,未经博主允许不得转载。 https://cloud.tencent.com/developer/article/1333821
用法:transform: scale(0.5) 或者 transform: scale(0.5, 2); 参数表示缩放倍数; 1. 一个参数时:表示水平和垂直同时缩放该倍率 2. 两个参数时:第一个参数指定水平方向的缩放倍率,第二个参数指定垂直方向的缩放倍率。
<tr class="tr-menu-6">
<td>6</td>
<td>《东京食尸鬼》</td>
<td class="td-todayWord">
<img src="/home/images/ps6.png" class="layui-circle">
</td>
<td>你觉得被圈养的鸟儿为什么无法自由地翱翔天际?是因为鸟笼不是属于它的东西</td>
<td>2018-01-12 03:31:59</td>
</tr>
.td-todayWord img{
cursor: pointer;
transition: all 0.6s;
width: 50px;
}
.td-todayWord img:hover{
transform: scale(5);
position:relative;
z-index:100;
}
position:relative; z-index:100;
,则图片不会覆盖其他.