欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vue?+?element-ui?背景圖片設(shè)置方式

 更新時(shí)間:2022年08月01日 10:58:37   作者:?jiǎn)瓮迫? 
這篇文章主要介紹了Vue?+?element-ui?背景圖片設(shè)置方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

element-ui 背景圖片設(shè)置

初學(xué)vue 看到其他網(wǎng)址都有些背景圖片,于是試著自己也寫(xiě)了一下,表述不好請(qǐng)見(jiàn)諒

實(shí)現(xiàn)效果

背景圖片設(shè)置

實(shí)現(xiàn)效果

以下是如何實(shí)現(xiàn):

找到你想要設(shè)置背景圖片的頁(yè)面

data里設(shè)置url

data() {
      return {
        url: '',
        urlList: [],
        timer: null
      }
    },

設(shè)置背景圖片綁定url,并填滿頁(yè)面

<div class="pull-height animated" :class="{'zoomOutUp': isLock}" :style="{backgroundImage:'url('+url+')'}" style="background-size: 100% 100%">
</div>

將子組件用div包裹,設(shè)置子組件透明度

<div class="index">
</div>
.index {
    filter:alpha(Opacity=85);
    -moz-opacity:0.85;
    opacity: 0.85;
    }

這樣背景圖片就設(shè)置好了,只要將url替換成圖片連接即可

接下來(lái)用element-ui的upload組件來(lái)設(shè)置url

在父組件設(shè)置監(jiān)聽(tīng)事件,監(jiān)聽(tīng)子組件傳值,也可以用vuex實(shí)現(xiàn)

 <top v-on:listenToChildEvent="setBackground"></top>

子組件設(shè)置數(shù)據(jù)

 data() {
      return {
        uploadFile: {
          dialogVisible: false,
          uploadImageList: [],
          uploadMedia: []
        },
        dialogFormVisible: false
      }
    },

點(diǎn)擊彈出圖片上傳界面

<el-tooltip class='item' effect='dark' content='背景圖片設(shè)置' placement='bottom'>
      <div style="font-size: 14px;margin-right: 20px" @click='dialogFormVisible = true'>
        背景設(shè)置
      </div>
      </el-tooltip>

綁定數(shù)據(jù)

<el-dialog v-dialogDrag :visible.sync="dialogFormVisible" width="40%" title="背景圖片設(shè)置">
      <div style="text-align: center;margin-bottom: 10px">
        <span>多張圖片隔10分鐘切換</span>
      </div>
      <el-upload style="text-align: center" action="你的上傳圖片接口" list-type="picture-card" ref="uploadImages" :multiple="true" :limit="4"
                 :file-list="uploadFile.uploadImageList" :autoUpload="true" :on-remove="handleUploadRemove" :onPreview="handlePictureCardPreview"
                 :onSuccess="handleUploadSuccess" :onExceed="()=>{$message.error('背景圖片不能超過(guò)四張')}">
        <i class="el-icon-plus"></i>
      </el-upload>
      <div style="text-align: center;margin-top: 10px">
        <el-button type="primary" @click='saveImage'>保存</el-button>
      </div>
    </el-dialog>
handleUploadSuccess(response, file, fileList) { // 上傳圖片成功后的回調(diào)
        this.uploadFile.uploadImageList = fileList
        this.$message.success('上傳成功')
        console.log('上傳圖片回調(diào)')
      },
      handleMidiaUploadSuccess(response, file, fileList) { // 上傳媒體成功后的回調(diào)
        this.uploadFile.uploadMedia = fileList
      },
      handleUploadRemove(file, fileList) { // 刪除圖片callback
        this.uploadFile.uploadImageList = fileList
      },
      handleMediaRemove(response, file, fileList) {
        this.uploadFile.uploadMedia = fileList
      },
      handlePictureCardPreview(file) { // 預(yù)覽圖片
        this.uploadFile.dialogImageUrl = file.url
        this.uploadFile.dialogVisible = true
      },

點(diǎn)擊保存按鈕后觸發(fā)的事件,這時(shí)父組件能接收到uploadImageList

saveImage() {
        this.$emit('listenToChildEvent', this.uploadFile.uploadImageList)
        this.dialogFormVisible = false
      },

父組件修改背景圖片的值,并將圖片連接存入localStorage,這樣頁(yè)面刷新圖片不會(huì)丟失

setData() {
        console.log(this.urlList.length)
        var imageMax = this.urlList.length - 1
        var imageMin = 0
        var imageNumber = parseInt(Math.random() * (imageMax - imageMin + 1) + imageMin)
        this.url = this.urlList[imageNumber]
        console.log(imageNumber)
        console.log(this.url)
      },
setBackground(data) {
        console.log(data)
        if (data.length === 0) {
          this.url = ''
          this.urlList = []
          localStorage.setItem('mydata', JSON.stringify(this.urlList))
        } else {
          this.url = ''
          this.urlList = []
          for (let i = 0; i < data.length; i++) {
            this.urlList.push(
              data[i].response.data
            )
          }
          this.setData()
          localStorage.setItem('mydata', JSON.stringify(this.urlList))
        }
      }

頁(yè)面初始化的時(shí)候從localStorage取數(shù)據(jù)

創(chuàng)建線程每隔10分鐘更換背景圖片

mounted() {
? ? ? this.timer = setInterval(this.setData, 600000)
? ? ? var imgList = JSON.parse(localStorage.mydata)
? ? ? this.urlList = imgList
? ? ? this.setData()
? ? },

頁(yè)面被銷毀時(shí)觸發(fā)事件,清空定時(shí)器

beforeDestroy() {
? ? ? clearInterval(this.timer)
? ? ? this.timer = null
? ? },

這樣寫(xiě)完,圖片改變時(shí)頁(yè)面會(huì)閃爍

在設(shè)置背景圖片的div上,加上v-cloak 防止頁(yè)面閃爍

<div v-cloak class="pull-height animated" :class="{'zoomOutUp': isLock}" :style="{backgroundImage:'url('+url+')'}" style="background-size: 100% 100%">
</div>

在style里配置

[v-cloak] {
? ? display: none;
? }

element自定義背景更換

最近的項(xiàng)目中需要自定義背景更換。可以在element官網(wǎng)查看使用方法,有2中方法,使用了第一種比較簡(jiǎn)單的,第二種自己嘗試了開(kāi)頭沒(méi)有繼續(xù)。

在這里使用這個(gè)方法,在項(xiàng)目中新建一個(gè)js文件,并且全局引用

在這個(gè)element-variables.scss里面內(nèi)容可以官網(wǎng)復(fù)制過(guò)來(lái)

/* theme color */
$--color-primary: #1890ff;
$--color-success: #13ce66;
$--color-warning: #ffba00;
$--color-danger: #ff4949;
$--color-info: rgba(32, 37, 57, 1);
$--button-font-weight: 400;
// $--color-text-regular: #1f2d3d;
$--border-color-light: #dfe4ed;
$--border-color-lighter: #e6ebf5;
$--table-border:1px solid#dfe6ec;
/* icon font path, required */
$--font-path: '~element-ui/lib/theme-chalk/fonts';
@import "~element-ui/packages/theme-chalk/src/index";
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
  theme: $--color-primary;
}

我們使用store來(lái)實(shí)現(xiàn)主題更換

引入index.js里面

此后進(jìn)行組件編寫(xiě)在components

<template>
  <el-color-picker v-model="defaultColor"
                       :predefine="['#409EFF', '#1890ff', '#304156','#212121','#11a983', '#13c2c2', '#6959CD', '#f5222d', ]"
                   class="theme-picker"
                   popper-class="theme-picker-dropdown" />
</template>
<script> 
export default {
  data () {
    return {};
  },
  props: ['theme'],
  computed: {
    defaultColor: {
      get () {
        return this.theme
      },
      set (val) {
        this.$emit('change', val)
      }
    }
  },
  methods: {}
};
</script>
<style>
.theme-message,
.theme-picker-dropdown {
  z-index: 99999 !important;
}
.theme-picker .el-color-picker__trigger {
  height: 26px !important;
  width: 26px !important;
  padding: 2px;
}
.theme-picker-dropdown .el-color-dropdown__link-btn {
  display: none;
}
</style>

以上這里方法是自己寫(xiě)的,如果是簡(jiǎn)單的背景更換,可以使用這個(gè)一版本方法,可以看懂的自己研究一下里面方法,例如:

<template>
  <el-color-picker
    v-model="theme"
    :predefine="['#409EFF', '#1890ff', '#304156','#212121','#11a983', '#13c2c2', '#6959CD', '#f5222d', ]"
    class="theme-picker"
    popper-class="theme-picker-dropdown"
  />
</template>
<script>
const version = require('element-ui/package.json').version // element-ui version from node_modules
// 默認(rèn)顏色
const ORIGINAL_THEME = '#409EFF' // default color
export default {
  data() {
    return {
      chalk: '', // content of theme-chalk css
      theme: ''
    }
  },
  computed: {
    defaultTheme() {
      return this.$store.state.settings.theme
    }
  },
  watch: {
    defaultTheme: {
      handler: function(val, oldVal) {
        this.theme = val
      },
      immediate: true
    },
    async theme(val) {
      await this.setTheme(val)
    }
  },
  created() {
    if(this.defaultTheme !== ORIGINAL_THEME) {
      this.setTheme(this.defaultTheme)
    }
  },
  methods: {
    async setTheme(val) {
      const oldVal = this.chalk ? this.theme : ORIGINAL_THEME
      if (typeof val !== 'string') return
      const themeCluster = this.getThemeCluster(val.replace('#', ''))
      const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
      const getHandler = (variable, id) => {
        return () => {
          const originalCluster = this.getThemeCluster(ORIGINAL_THEME.replace('#', ''))
          const newStyle = this.updateStyle(this[variable], originalCluster, themeCluster)
          let styleTag = document.getElementById(id)
          if (!styleTag) {
            styleTag = document.createElement('style')
            styleTag.setAttribute('id', id)
            document.head.appendChild(styleTag)
          }
          styleTag.innerText = newStyle
        }
      }
      if (!this.chalk) {
        const url = `https://unpkg.com/element-ui@${version}/lib/theme-chalk/index.css`
        await this.getCSSString(url, 'chalk')
      }
      const chalkHandler = getHandler('chalk', 'chalk-style')
      chalkHandler()
      const styles = [].slice.call(document.querySelectorAll('style'))
        .filter(style => {
          const text = style.innerText
          return new RegExp(oldVal, 'i').test(text) && !/Chalk Variables/.test(text)
        })
      styles.forEach(style => {
        const { innerText } = style
        if (typeof innerText !== 'string') return
        style.innerText = this.updateStyle(innerText, originalCluster, themeCluster)
      })
      this.$emit('change', val)
    },
    updateStyle(style, oldCluster, newCluster) {
      let newStyle = style
      oldCluster.forEach((color, index) => {
        newStyle = newStyle.replace(new RegExp(color, 'ig'), newCluster[index])
      })
      return newStyle
    },
    getCSSString(url, variable) {
      return new Promise(resolve => {
        const xhr = new XMLHttpRequest()
        xhr.onreadystatechange = () => {
          if (xhr.readyState === 4 && xhr.status === 200) {
            this[variable] = xhr.responseText.replace(/@font-face{[^}]+}/, '')
            resolve()
          }
        }
        xhr.open('GET', url)
        xhr.send()
      })
    },
    getThemeCluster(theme) {
      const tintColor = (color, tint) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)
        if (tint === 0) { // when primary color is in its rgb space
          return [red, green, blue].join(',')
        } else {
          red += Math.round(tint * (255 - red))
          green += Math.round(tint * (255 - green))
          blue += Math.round(tint * (255 - blue))
          red = red.toString(16)
          green = green.toString(16)
          blue = blue.toString(16)
          return `#${red}${green}${blue}`
        }
      }
      const shadeColor = (color, shade) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)
        red = Math.round((1 - shade) * red)
        green = Math.round((1 - shade) * green)
        blue = Math.round((1 - shade) * blue)
        red = red.toString(16)
        green = green.toString(16)
        blue = blue.toString(16)
        return `#${red}${green}${blue}`
      }
      const clusters = [theme]
      for (let i = 0; i <= 9; i++) {
        clusters.push(tintColor(theme, Number((i / 10).toFixed(2))))
      }
      clusters.push(shadeColor(theme, 0.1))
      return clusters
    }
  }
}
</script>
<style>
.theme-message,
.theme-picker-dropdown {
  z-index: 99999 !important;
}
.theme-picker .el-color-picker__trigger {
  height: 26px !important;
  width: 26px !important;
  padding: 2px;
}
.theme-picker-dropdown .el-color-dropdown__link-btn {
  display: none;
}
</style>

背景和字體顏色如果是同一個(gè)顏色,會(huì)有沖突,所以字體顏色需要單獨(dú)設(shè)置

這里我只是簡(jiǎn)單介紹使用方法。如果正式一點(diǎn)自己可以嘗試做成這樣的

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • vue 注冊(cè)組件的使用詳解

    vue 注冊(cè)組件的使用詳解

    Vue.js的組件的使用有3個(gè)步驟:創(chuàng)建組件構(gòu)造器、注冊(cè)組件和使用組件。這篇文章主要介紹了vue 注冊(cè)組件的使用,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下
    2018-05-05
  • vue清除地址欄路由參數(shù)方式

    vue清除地址欄路由參數(shù)方式

    這篇文章主要介紹了vue清除地址欄路由參數(shù)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • Vue中ref的用法及演示

    Vue中ref的用法及演示

    這篇文章主要介紹了Vue中ref的用法及演示,ref被用來(lái)給元素或子組件注冊(cè)引用信息。引用信息會(huì)被注冊(cè)在父組件上的$refs對(duì)象上,下面來(lái)看看文章的詳細(xì)內(nèi)容,需要的朋友可以參考一下
    2021-11-11
  • vue2模擬vue-element-admin手寫(xiě)角色權(quán)限的實(shí)現(xiàn)

    vue2模擬vue-element-admin手寫(xiě)角色權(quán)限的實(shí)現(xiàn)

    本文主要介紹了vue2模擬vue-element-admin手寫(xiě)角色權(quán)限的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-07-07
  • Vue子組件調(diào)用父組件方法案例詳解

    Vue子組件調(diào)用父組件方法案例詳解

    這篇文章主要介紹了Vue子組件調(diào)用父組件方法案例詳解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下
    2021-09-09
  • Vue.js實(shí)現(xiàn)多條件篩選、搜索、排序及分頁(yè)的表格功能

    Vue.js實(shí)現(xiàn)多條件篩選、搜索、排序及分頁(yè)的表格功能

    這篇文章主要為大家詳細(xì)介紹了Vue.js實(shí)現(xiàn)多條件篩選、搜索、排序及分頁(yè)的表格功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • vue3頁(yè)面組件中怎么獲取上一個(gè)頁(yè)面的路由地址

    vue3頁(yè)面組件中怎么獲取上一個(gè)頁(yè)面的路由地址

    這篇文章主要給大家介紹了關(guān)于vue3頁(yè)面組件中怎么獲取上一個(gè)頁(yè)面的路由地址的相關(guān)資料,文中通過(guò)代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2024-02-02
  • 一篇文章學(xué)會(huì)Vue中間件管道

    一篇文章學(xué)會(huì)Vue中間件管道

    這篇文章主要給大家介紹了如何通過(guò)一篇文章學(xué)會(huì)Vue中間件管道的相關(guān)資料,什么是中間件管道?中間件管道是一堆不同的中間件并行運(yùn)行,本文通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2021-06-06
  • Vue Element-ui 鍵盤(pán)事件失效的解決

    Vue Element-ui 鍵盤(pán)事件失效的解決

    這篇文章主要介紹了Vue Element-ui 鍵盤(pán)事件失效的解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-10-10
  • vue監(jiān)聽(tīng)頁(yè)面中的某個(gè)div的滾動(dòng)事件并判斷滾動(dòng)的位置

    vue監(jiān)聽(tīng)頁(yè)面中的某個(gè)div的滾動(dòng)事件并判斷滾動(dòng)的位置

    本文主要介紹了vue監(jiān)聽(tīng)頁(yè)面中的某個(gè)div的滾動(dòng)事件并判斷滾動(dòng)的位置,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-03-03

最新評(píng)論