更新记录
1.0.1(2021-02-27)(2021-02-27) 下载此版本
添加 示例项目
平台兼容性
组件开篇
3D旋转木马Btn 支持: 目前仅支持uni-App 支持btn数量: 目前仅支持6个; 可以自己扩展,需要修改setStyle方法,自己计算元素位置及偏移度数
使用方法
<template>
<view class="wrap">
<btnIndex :dataList="list" class="rotaBtn" :leftAndright1Deg="15" :leftAndright2Deg="25"
@change="changeHandle" @gotoHandle="gotoHandle"/>
</view>
</template>
<script>
import btnIndex from '@/components/peng-3DRotateBtn'
export default {
components:{btnIndex},
data() {
return {
list: []
}
},
methods: {
// 旋转事件
changeHandle(index){
console.log(index, 'index')
},
// 点击事件
gotoHandle(index){
console.log(index, 'index')
},
}
}
</script>
<style scoped>
</style>