vue-konva实现拖拽和放大缩小
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
参考konva官网
<template>
<v-stage ref="stage" :config="stageConfig" @wheel="wheelForScale($event)">
<v-layer ref="layer">
<v-image :config="{
image: image
}"/>
</v-layer>
</v-stage>
</template>
<script>
const width = window.innerWidth;
const height = window.innerHeight;
export default {
data() {
return {
stageConfig: {
width: width,
height: height,
// 拖拽
draggable: true
},
image: null
};
},
created() {
const image = new window.Image();
image.src = "https://konvajs.org/assets/yoda.jpg";
image.onload = () => {
// set image only when it is loaded
this.image = image;
};
},
methods: {
// 放大缩小
wheelForScale(e) {
//document.getElementById('ele').addEventListener('mousewheel', function (e) {
// e.preventDefault();
//}, { passive: false });
if (e.evt.wheelDelta > 0) {
let i = 1
this.stageConfig.width += i * 100
i++
}else {
let i = 1
this.stageConfig.width += i * -100
i++
}
}
}
};
</script>
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)