例如,我有一个元素,例如下一个css的图像:
img{
width:400;
height:285;
transition: all .3s ease;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
-webkit-backface-visibility: hidden;
}
img:hover{
transform: scale(1.04,1.04);
-ms-transform: scale(1.04,1.04);
-webkit-transform: scale(1.04,1.04);
}
在此图像上,我有一个绝对横幅出现在图像悬停上并根据图像偏移位置移动,因此在图像缩放时,图像的偏移被改变,我的横幅变得“缩放”#34;图像偏移而不是正常偏移。我想计算像素的偏差,以便从绝对横幅left
和top
css值中减少此值。
我已经尝试了this solution,但似乎无法正常工作。
感谢您的帮助