这可能是一个太宽泛的问题,但是我正在尝试使用Vuejs作为框架来重新创建cursomizer。我被困在必须动态更改光标的位置。这些游标应该是SVG文件,可以从下一个组件访问该文件,用户可以在其中修改大小和填充。我关心的是可以将不同的光标存储在不同的按钮中,并在单击时进行更新。我提供的代码包含动态生成的不同列表项,当单击它们时,它将向所选项目添加 active 类。如果有人对如何解决此问题有任何建议,请加入。
<template>
<div>
<h1>Choose cursor</h1>
<section class="cursors-wrapper">
<ul class="cursor-list">
<li class="cursor-list-item" @click="activateCursor(cursor.cursorId)" :class="{ active : active_el == cursor.cursorId }" v-for="cursor in cursors" >
<a href="#" class="cursor-list-item-inner">
<!-- SVGG-->
<div v-html="cursor.cursorImage"></div>
</a>
</li>
</ul>
</section>
<div @click="choosenOne"></div>
</div>
<script>
export default {
data () {
return {
cursors: [
{
cursorId: '1',
cursorImage: `<svg class="cursor-svg cursor-svg_static hover_undefined move_undefined click_undefined" height="16"
width="16">
<ellipse class="cursor-svg__main" cx="8" cy="8" rx="8" ry="8" fill="#000"></ellipse>
</svg>`
},
{
cursorId: '2',
cursorImage: `<svg class="cursor-overflow cursor-svg cursor-svg_static hover_undefined move_undefined click_undefined" height="16"
width="16">/* */
<ellipse class="cursor-svg__main" cx="8" cy="8" rx="8" opacity="1" ry="8" fill="none"
stroke-width="3" stroke="#000"></ellipse>
</svg>`
},
{
cursorId: '3',
cursorImage: ` <svg class="cursor-svg cursor-svg_static hover_undefined move_undefined click_undefined" height="16"
width="16">
<path class="cursor-svg__main" d="M 0 0 L 12 10 L 0 16" opacity="1" fill="#000"></path>
</svg>`
}
],
active_el: 0
}
},
methods:{
activateCursor:function(el){
this.active_el = el;
console.log(this.cursorId);
}
}
}
答案 0 :(得分:1)
我能想到的最好的解决方案是使用样式绑定。这样,您可以在数据对象中定义光标,然后动态更改它(v-bind:style="{cursor: selectedCursor}"
)。
关于设置光标,您可以使用this question.顶部答案所示的方法
我创建了一个小提琴来说明我的意思 https://jsfiddle.net/rnab4tep/1/
您现在所要做的就是将selectedCursor设置为您喜欢的光标。