gpt4 book ai didi

javascript - 如何在 rivet.js 中绑定(bind)样式属性 top 和 left

转载 作者:行者123 更新时间:2023-11-30 10:04:39 25 4
gpt4 key购买 nike

我如何绑定(bind)一个对象,比如我:

 var Item = function() {
this.x = 10;
this.y = 10;
}
var i = new Item();

到具有样式“position: relative; left: {x}; top: {y}”的 div

使用 http://rivetsjs.com/

最佳答案

您需要为此创建一个自定义 Binder :

rivets.binders['style-*'] = function(el, value){
el.style.setProperty(this.args[0], value);
};

……然后……

<p rv-style-left="item.x" rv-style-top="item.top">

关于javascript - 如何在 rivet.js 中绑定(bind)样式属性 top 和 left,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29800058/

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