【发布时间】:2016-09-19 12:23:57
【问题描述】:
我有这个脚本可以在悬停时随机化我的边框 img 的颜色,但是当我离开 img 时它也会删除我的基本边框..(从一开始我的所有 img 都有一个灰色边框,我想要这个边框永远留在那里不被移除)
script>
$(function() {
var colors = ["#FC3E6B","#24FF00","#0087F9","#F9F900"];
$('.grid-item-content').hover(
function() {
var rand = Math.floor(Math.random()*colors.length);
$(this).css('border-style', 'solid');
$(this).css('border-width', '10px');
$(this).css('border-color', colors[rand]);
},
function() {
$(this).css('border-style', 'none');
}
);
});
</script>
【问题讨论】:
标签: javascript jquery random colors border