gpt4 book ai didi

javascript - jQuery - 从变量设置背景位置

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

我获取 X 和 Y 坐标或选定区域,然后使用它来设置另一个 DIV 中图像的位置。

变量:

selection.x1 (This will need to be a negative value)
selection.y2

我需要使用 Javascript 或 jQuery 编写以下内容:

div.css('background-position', -selection.xl selection.y2);

但这只会给我一个错误,如何向 CSS 添加两个背景位置值?

最佳答案

var x1 = '-100';
var y2 = '100';

$('#divID').css({
'background-position':x1+'px '+y2+'px'
});

这对我有用,只需确保您的 css 中也有一个 background-position (即使它设置为 0px 0px

编辑@logic-unit
$('#divID').css('背景位置', x1+'px '+y2+'px');

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

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