game-marquee
v0.0.3
Published
``` npm install game-marquee ```
Downloads
1
Readme
game-marquee
图片跑马灯
安装
npm install game-marquee
使用
- json
{
"usingComponents": {
"game-marquee": "game-marquee/game-marquee"
}
}
- js
Component({
mixins: [],
data: {
marquee: {
width: 750,
height: 109,
left: 0,
top: 0,
time: 1,//动画时间
defaultX: -45,//初始位置
items: [{
src: "https://img.alicdn.com/imgextra/i3/1080040467/O1CN012f096F1FJvfeWQbkx_!!1080040467.png",
width: 560,
height: 109,
}]
},
},
props: {},
didMount() { },
didUpdate() { },
didUnmount() { },
methods: {},
});
- xaml
<game-marquee component-data="{{marquee}}" />