gpt4 book ai didi

javascript - 使背景位置可变

转载 作者:行者123 更新时间:2023-12-02 07:45:05 25 4
gpt4 key购买 nike

我正在使用这段代码...

document.getElementById('a1').style.backgroundPosition = '0px 0px';

它工作正常,但无论如何都可以用 javascript 制作定位变量吗?

像这样...

document.getElementById('a1').style.backgroundPosition = '0px VariableHere';

最佳答案

由于背景位置是一个字符串,您可以将您的值连接起来。

例如:

var yValue = 20;
document.getElementById('a1').style.backgroundPosition = '0px ' + yValue + 'px';

关于javascript - 使背景位置可变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7630840/

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