Former-commit-id: 389ee4ae067ddb6ba004d6b61cacb5e85cccfdfb [formerly 389ee4ae067ddb6ba004d6b61cacb5e85cccfdfb [formerly 389ee4ae067ddb6ba004d6b61cacb5e85cccfdfb [formerly 389ee4ae067ddb6ba004d6b61cacb5e85cccfdfb [formerly a7a8e84c3f91251be54453c2953b303c97f18500 [formerly 92b8cc6bf9d7cfa4413140cbb53b63313d89b50e]]]]] Former-commit-id: c1dfc429358c2c851596de19c0addd69c9ba7a04 Former-commit-id: 38d14b1767e93500756bfd63d9417f198c1072d6 Former-commit-id: 6aa971020961a9c12a3790414b7bd06def3d5922 [formerly d1cf77ed4557c58790f9f9ef44344fdc1b5a63e0] Former-commit-id: 0333ea49a1b4bff5833e3b9a27484d824ee120d4 Former-commit-id: ccc5f16c2bce6ab562415120caf45c8d78e69a6b Former-commit-id: 78520c1824aa5d58428f07c7c9dd2d645d4a6cce Former-commit-id: a1937ddd17de318c80640db11a1979fc59cee4ee Former-commit-id: 065f3b5d8911a7697c034da0ed23b71cf4205ed6
107 lines
2.8 KiB
Vue
107 lines
2.8 KiB
Vue
<template>
|
|
<d2-container>
|
|
<template slot="header">滚动定位</template>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<div ref="wrapper" class="demo-bs-wrapper">
|
|
<div>
|
|
<div v-for="n in 100" :key="n" class="demo-bs-item" :id="`demo-bs-item-${n}`">n : {{n}}</div>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="16">
|
|
<div class="d2-mb">
|
|
<p>滚动时间 ms</p>
|
|
<el-slider v-model="time" :min="100" :max="3000"></el-slider>
|
|
</div>
|
|
<div class="d2-mb">
|
|
<el-button-group>
|
|
<el-button @click="handleScrollTo(100)">滚动到100像素位置</el-button>
|
|
<el-button @click="handleScrollTo(300)">滚动到300像素位置</el-button>
|
|
</el-button-group>
|
|
</div>
|
|
<div class="d2-mb">
|
|
<el-button-group>
|
|
<el-button @click="handleScrollBy(50)">向下滚动50像素</el-button>
|
|
<el-button @click="handleScrollBy(-50)">向上滚动50像素</el-button>
|
|
</el-button-group>
|
|
</div>
|
|
<div class="d2-mb">
|
|
<el-button-group>
|
|
<el-button @click="handleScrollToElement(4)">滚动到第四个</el-button>
|
|
<el-button @click="handleScrollToElement(14)">滚动到第十四个</el-button>
|
|
<el-button @click="handleScrollToElement(24)">滚动到第二十四个</el-button>
|
|
</el-button-group>
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
<template slot="footer">
|
|
<d2-link-btn title="文档" link="http://ustbhuangyi.github.io/better-scroll/doc/zh-hans/"/>
|
|
</template>
|
|
</d2-container>
|
|
</template>
|
|
|
|
<script>
|
|
// 插件
|
|
import BScroll from 'better-scroll'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
time: 300,
|
|
BS: null
|
|
}
|
|
},
|
|
mounted () {
|
|
this.scrollInit()
|
|
},
|
|
beforeDestroy () {
|
|
this.scrollDestroy()
|
|
},
|
|
methods: {
|
|
handleScrollTo (y) {
|
|
this.BS.scrollTo(0, -y, this.time)
|
|
},
|
|
handleScrollBy (y) {
|
|
this.BS.scrollBy(0, -y, this.time)
|
|
},
|
|
handleScrollToElement (n) {
|
|
this.BS.scrollToElement(`#demo-bs-item-${n}`, this.time)
|
|
},
|
|
scrollInit () {
|
|
this.BS = new BScroll(this.$refs.wrapper, {
|
|
mouseWheel: true,
|
|
scrollbar: {
|
|
fade: true,
|
|
interactive: false
|
|
}
|
|
})
|
|
},
|
|
scrollDestroy () {
|
|
if (this.BS) {
|
|
this.BS.destroy()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~@/assets/style/public.scss';
|
|
.demo-bs-wrapper {
|
|
height: 400px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 1px solid $color-border-1;
|
|
border-radius: 4px;
|
|
.demo-bs-item {
|
|
line-height: 40px;
|
|
padding-left: 10px;
|
|
border-bottom: 1px solid $color-border-4;
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|