我正在建立一个网站,当用户将鼠标悬停在产品上时,我想为该图像提供左上角、右上角、左下角和右下角的边框。由于 CSS 属性border-top-left-image
在几年前被弃用,唯一的其他解决方案就是使用 JS。目前我的想法是我将跨度与图标类一起使用,然后在悬停时附加四个跨度,然后将它们从 DOM 中删除,这是最好的解决方案,还是在我不附加四个跨度的地方有更简单的方法和每次产品悬停时删除它们,这是我当前的代码,告诉我你的想法,任何建议都会很棒,在此先感谢!
CSS
.icon {
background: url("../images/theme/icons.png");
overflow: hidden;
width: 1.6em;
height: 1.6em;
position: absolute;
}
.top-left {
top: 0;
left: 0;
background-position: -11.2em 24em;
}
.top-right {
top: 0;
right: 0;
background-position: -1.6em 24em;
}
.bottom-left {
bottom: 0;
left: 0;
background-position: -8em 24em;
}
.bottom-right {
bottom: 0;
right: 0;
background-position: -4.8em 24em;
}
HTML
<div class="layout-product">
<a href="http://www.mysite.com/product/lorem-ipsum-1">
<div class="product-image">
<img src="http://www.mysite.com/images/thumbnail/lorem-ipsum-1.jpg" alt="">
</div>
</a>
</div>
jQuery
$('.layout-product').hover(function() {
$(this).find('.product-image').append('<span class="icon top-left"></span>'
+ '<span class="icon top-right"></span>'
+ '<span class="icon bottom-left"></span>'
+ '<span class="icon bottom-right"></span>'
);
}, function() {
$('.icon').remove();
});