首頁 > web前端 > js教程 > 主體

vue.js如何使用mint-ui輪播組件

php中世界最好的语言
發布: 2018-04-13 14:08:06
原創
4079 人瀏覽過

這次帶給大家vue.js如何使用mint-ui輪播元件,vue.js使用mint-ui輪播元件的注意事項有哪些,以下就是實戰案例,一起來看一下。

初始化vue專案

npm install -g vue-cli
vue 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 <= 8"]
  }
 }],
 "stage-2",
 ["es2015", { "modules": false }]
 ],
 "plugins": [["component", [
 {
  "libraryName": "mint-ui",
  "style": true
 }
 ]],"transform-vue-jsx", "transform-runtime"],
 "env": {
 "test": {
  "presets": ["env", "stage-2", "es2015"],
  "plugins": ["transform-vue-jsx", "transform-es2015-modules-commonjs", "dynamic-import-node"]
 }
 }
}
登入後複製

整合

開啟已建立的vue專案demo,在src裡找到 components/HelloWorld.vue 文件,然後將內容換成下面內容

<template>
 <p>
 <mt-swipe :auto="2000">
  <mt-swipe-item v-for="item in items" :key="item.id">
  <a :href="item.href" rel="external nofollow" >
   <img :src="item.url" class="img"/>
   <span class="desc"></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 scoped>
 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; }

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

Swiper實作行動裝置廣告圖片輪播

swiper外掛程式怎麼切換箭頭按鈕

Angular怎麼實作定時器效果

#

以上是vue.js如何使用mint-ui輪播組件的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!