gpt4 book ai didi

javascript - 织物对象的不透明度 slider

转载 作者:行者123 更新时间:2023-11-28 07:33:52 25 4
gpt4 key购买 nike

我有一个 Canvas ,其中包含织物对象。我想在 Canvas 中为文本区域的背景“textbackroundColor”做不透明度 slider 。如何进行滑动和更改功能?

$("#backgroundOpacity").slider( {
min: 10,
max: 50,
value: 30,
slide: text_bgColor_slider_moved,
change: text_bgColor_slider_changed

});

最佳答案

首先获取 Canvas 的事件对象

var activeObject = canvas.getActiveObject();

然后

$("#backgroundOpacity").slider( {
max : 100,
value : activeObject.opacity * 100,
slide: function (event, ui) {
activeObject.setOpacity(ui.value / 100);
canvas.renderAll();
},
stop : function (event, ui) {
canvas.renderAll();
}
});

关于javascript - 织物对象的不透明度 slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28813552/

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