您的位置:首页 > 产品设计 > UI/UE

vue-lazyload基础实例(基于vue2.0和vue-router2.0)

2017-07-27 22:29 1216 查看
首先引入依赖
import Vue from 'vue';
import Router from 'vue-router';
import VueLazyload from 'vue-lazyload';
1
2
3
1
2
3

配置vue-lazyload
Vue.use(VueLazyload, {
preLoad: 1.3,
error: './img/error.jpg',
loading: 'http://cdn.uehtml.com/201402/1392662591495_1140x0.gif',
attempt: 1,
listenEvents: [ 'scroll', 'mousewheel' ]
});
1
2
3
4
5
6
7
1
2
3
4
5
6
7

模版部分
<div class="hello">
<ul>
<li v-for="item in imgUrl">
<img v-lazy="item.src" alt="" width="300" height="150"/>
</li>
</ul>
</div>
export default {
name: 'hello',
data() {
return {
imgUrl: [
{src: 'http://pic.58pic.com/58pic/11/25/25/46j58PICKMh.jpg'},
{src: 'http://pic.58pic.com/58pic/11/25/25/46j58PICKMh.jpg'},
{src: 'http://pic.58pic.com/58pic/11/25/25/46j58PICKMh.jpg'},
{src: 'http://pic.58pic.com/58pic/11/25/25/46j58PICKMh.jpg'}
]
};
}
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

css
img[lazy=loading]{
//your code
}
img[lazy=loaded]{
//your code
animation:fade 0.5s;
}
@keyframes fade {
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

原文地址:http://blog.csdn.net/blueblueskyhua/article/details/64124240

项目完整实例地址:https://github.com/hua1995116/vue/tree/master/vue-lazyload 

lazy-load api 地址https://www.npmjs.com/package/vue-lazyload
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: