您好,我搜索了一个在 html 模态中加载 tui 图像编辑器的解决方案我有一个包含许多图像的表单,我想添加一个按钮来编辑它,它将打开一个带有图像的模态......我的想法是添加页面中的脚本和按钮中的 js 事件......但我不知道一些对我有什么帮助?
// Image editor
var imageEditor = new tui.ImageEditor('#tui-image-editor', {
includeUI: {
loadImage: {
path: 'img/sampleImage2.png',
name: 'SampleImage'
},
theme: blackTheme, // or whiteTheme
initMenu: 'filter',
hideHeader: 1,
menuBarPosition: 'bottom'
},
cssMaxWidth: 700,
cssMaxHeight: 500,
usageStatistics: false
});
window.onresize = function() {
imageEditor.ui.resizeEditor();
}
</script>
问候