我正在使用 clip:rect 将图像剪辑成缩略图,并且我想随机放置剪辑矩形在翻转时的位置。我的代码:
$('.itembox').mouseover(function() {
var img = $(this).find('img');
var width = img[0].width;
var height = img[0].height;
var clipwidth = Math.floor( $(this).width() );
var clipheight = Math.floor( $(this).height() );
var widthrange = width - clipwidth;
var heightrange = height - clipheight;
var x = Math.floor(Math.random() * widthrange);
var y = Math.floor(Math.random() * heightrange);
var x2 = x + clipwidth;
var y2 = y + clipheight;
img.css('clip', 'rect('+x+'px '+x2+'px '+y+'px '+y2+'px)');
$(this).children('.itemboxbg').show();
$(this).css({'color' : 'white'});
});
它适用于预设的 css:
.itemboxbg {
border: none;
position:absolute;
width:193px;
height:273px;
z-index:0;
}
.itemboxbg img {
border: none;
position: absolute;
clip: rect(0px 193px 273px 0px);
}
但是当翻转事件触发并更改 css 时,图像就会消失。CSS很好,例如:
<img src="./img/exampleimage.png" style="clip: rect(304px 498px 72px 344px);">
任何帮助,将不胜感激。