gpt4 book ai didi

javascript - Javascript 随机边距方向

转载 作者:行者123 更新时间:2023-11-28 09:19:38 25 4
gpt4 key购买 nike

我想使用 JS 随机生成一个边距方向,但没有任何效果。怎么了?

这是我的代码

$('.portfolio-img').hover(function(event){
var str = '';
var myPos = ['marginLeft', 'marginTop', 'marginBottom', 'marginRight'];
var thisRand = Math.floor(Math.random() * myPos.length);
var str = String(myPos[thisRand]);

$(this).find('img').animate({
str: '-60px',
}, 300);
}, function(){
$(this).find('img').animate({
str: '0px',
}, 300);
});

最佳答案

改变

$(this).find('img').animate({
str: '-60px',
}, 300);

var o = {};
o[str] = '-60px';
$(this).find('img').animate(o, 300);

顺便说一句,你也可以替换

var str = String(myPos[thisRand]);

var str = myPos[thisRand];

关于javascript - Javascript 随机边距方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15203071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com