这次给大家带来vue.js如何使用mint-ui轮播组件,vue.js使用mint-ui轮播组件的注意事项有哪些,下面就是实战案例,一起来看一下。
初始化vue项目
npm install -g vue-clivue init webpack demo # 中间会让你选npm yarn 等来安装依赖,我选的是yarn,因为它快些
安装mint-ui
yarn add mint-ui
mint-ui装好了,还要配置一下babel,方法跟着mint-ui的官方文档来配置就可以了
下面是我配置好的 .babelrc 文件,启动的时候会报跟es2015相关的错,装一下 babel-preset-es2015 就好了
{ "presets": [ ["env", { "modules": false, "targets": { "browsers": ["> 1%", "last 2 versions", "not ie <p style="text-align: left;"><span style="color:#ff0000;"><strong>集成</strong></span></p><p style="text-align: left;">打开创建的vue项目demo,在src里找到 components/HelloWorld.vue 文件,然后将内容换成下面内容</p><pre class="brush:php;toolbar:false"><template> <p> <mt-swipe> <mt-swipe-item> <a> <img alt="vue.js如何使用mint-ui轮播组件" > <span></span> </a> </mt-swipe-item> </mt-swipe> </p></template><script> import {Swipe, SwipeItem} from 'mint-ui' import 'mint-ui/lib/style.css' export default { components: { 'mt-swipe': Swipe, 'mt-swipe-item': SwipeItem }, data () { return { items: [{ title: '你的名字', href: 'http://google.com', url: 'http://localhost:8080/static/img1.png' }, { title: '我的名字', href: 'http://baidu.com', url: 'http://localhost:8080/static/img2.png' }] } } }</script><style> img { width: 100%; } .mint-swipe { height: 218px; } .desc { font-weight: 600; opacity: .9; padding: 5px; height: 20px; line-height: 20px; width: 100%; color: #fff; background-color: gray; position: absolute; bottom: 0; }</style>
找两张图片,名字分别是 img1.png , img2.png , 放在demo项目的static里,然后启动项目
npm run dev
打开浏览器:http://localhost:8080/
注意
1.如果发现文字都是居中的
可以找到文件 App.vue 把里面的居中css代码去掉就好了
1.如果页面有内边距
设置一下 body 的样式 margin: 0 auto;
页面里用的时候,必须要给类样式一个高度,要不然图片不出来 .mint-swipe { height: 218px; }
相信看了本文案例你已经掌握了方法,更多精彩请关注本站其它相关文章!
推荐阅读:
Swiper实现移动端广告图片轮播
swiper插件怎样切换箭头按钮
立即学习“前端免费学习笔记(深入)”;
Angular怎样实现定时器效果
免责声明:本站内容仅用于学习参考,信息和图片素材来源于互联网,如内容侵权与违规,请联系我们进行删除,我们将在三个工作日内处理。联系邮箱:chuangshanghai#qq.com(把#换成@)