Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

24 lines
823 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var Zan = require('../../dist/index');
Page(Object.assign({}, Zan.NoticeBar, {
data: {
movable: {
text: '足协杯战线连续第2年上演广州德比战上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。'
},
static1: {
text: '足协杯战线连续第2年上演广州德比战'
},
static2: {
text: '足协杯战线连续第2年上演广州德比战上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。'
}
},
onShow() {
// 滚动通告栏需要initScroll
this.initZanNoticeBarScroll('movable');
// initScroll的通告栏如果宽度足够显示内容将保持静止
this.initZanNoticeBarScroll('static1');
// 不进行initScroll的通告栏也将保持静止
// this.initZanNoticeBarScroll('static2');
}
}))