国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

vue中使用Element主題自定義膚色

番茄西紅柿 / 586人閱讀

摘要:一搭建好項(xiàng)目的環(huán)境。二根據(jù)官網(wǎng)的自定義主題來安裝主題生成工具。三在文件里修改,即你想要的主題顏色。然后,執(zhí)行主題編譯命令生成主題,根目錄會生成一個文件夾。四封裝動態(tài)換膚色組件。關(guān)閉瀏覽器再次打開依舊是你所選中的主題膚色

一、搭建好項(xiàng)目的環(huán)境。

二、根據(jù)ElementUI官網(wǎng)的自定義主題(http://element.eleme.io/#/zh-CN/component/custom-theme)來安裝【主題生成工具】。

三、在 element-variables.scss 文件里修改 $–color-primary:#409EFF,即你想要的主題顏色。然后,執(zhí)行主題編譯命令生成主題(et),根目錄會生成一個theme文件夾。

 

 四、封裝動態(tài)換膚色ThemePicker.vue組件。

 

<template>
  <el-color-picker
    class="theme-picker"
    popper-class="theme-picker-dropdown"
    v-model="theme"
    :size="size">
  el-color-picker>
template>

<script>

const version = require(element-ui/package.json).version // element-ui version from node_modules
const ORIGINAL_THEME = #409EFF // default color
export default {
  name: ThemePicker,
  props: {
    default: { // 初始化主題,可由外部傳入
      type: String,
      //default: #EB815B
      default: ""+localStorage.getItem("tremePackers")+""
    },
    size: { // 初始化主題,可由外部傳入
      type: String,
      default: small
    }
  },
  data() {
    return {
      chalk: , // content of theme-chalk css
      theme: ORIGINAL_THEME,
      showSuccess: true, // 是否彈出換膚成功消息
    }
  },
  mounted() {
    if(this.default != null) {
      this.theme = this.default
      this.$emit(onThemeChange, this.theme)
      this.showSuccess = false
    }
  },
  watch: {
    theme(val, oldVal) {
      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
        }
      }

      const chalkHandler = getHandler(chalk, chalk-style)

      if (!this.chalk) {
        const url = `https://unpkg.com/element-ui@${version}/lib/theme-chalk/index.css`
        this.getCSSString(url, chalkHandler, chalk)
      } else {
        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)
      })

      // 響應(yīng)外部操作
      this.$emit(onThemeChange, val)
      //存入localStorage
      localStorage.setItem(tremePackers,val);
      if(this.showSuccess) {
        this.$message({
          message: 換膚成功,
          type: success
        })
      } else {
        this.showSuccess = true
      }
    }
  },
  methods: {
    updateStyle(style, oldCluster, newCluster) {
      let newStyle = style
      oldCluster.forEach((color, index) => {
        newStyle = newStyle.replace(new RegExp(color, ig), newCluster[index])
      })
      return newStyle
    },

    getCSSString(url, callback, variable) {
      const xhr = new XMLHttpRequest()
      xhr.onreadystatechange = () => {
        if (xhr.readyState === 4 && xhr.status === 200) {
          this[variable] = xhr.responseText.replace(/@font-face{[^}]+}/, )
          callback()
        }
      }
      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-picker .el-color-picker__trigger {
  vertical-align: middle;
}

.theme-picker-dropdown .el-color-dropdown__link-btn {
  display: none;
}
style>

五、直接在組件中引用

 

 六、換膚效果測試。(關(guān)閉瀏覽器再次打開依舊是你所選中的主題膚色)

 

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/1236.html

相關(guān)文章

  • VUE UI框架對比 element-ui 與 iView

    摘要:而則是用到到指令結(jié)合的方式去生成,批量生成元素。表格操作列自定義渲染的時,使用的是的函數(shù),直接在中插入對應(yīng)模板表格分頁都需要引入分頁組件配合使用兩者總體比較,要比簡潔許多。 element VS iview(最近項(xiàng)目UI框架在選型 ,做了個分析, 不帶有任何利益相關(guān))主要從以下幾個方面來做對比使用率(npm 平均下載頻率,組件數(shù)量,star, issue…)API風(fēng)格打包優(yōu)化與設(shè)計師友...

    ZHAO_ 評論0 收藏0
  • Vue ui 大法哪家強(qiáng)?

    Element iView Vuex Mint UI Vant cube-ui,對比六大 vue ui 組件庫,選中最適合的那個。 Element(pc) 介紹 & 版本 餓了么前端團(tuán)隊開發(fā)的桌面端組件庫,當(dāng)前最新版本:2.4.8 Star:32.067k 項(xiàng)目特色 團(tuán)隊維護(hù) 支持三個版本:vue、react、angular 支持 Nuxt.js 常規(guī)支持:多語言、自定義主題、按需引入、內(nèi)置...

    Edison 評論0 收藏0
  • Element 一套優(yōu)雅的 Vue 2 組件庫是如何開發(fā)的

    摘要:今年的大會上,受到作者現(xiàn)場開源項(xiàng)目的感染,我們也在現(xiàn)場宣布開源這套基于開發(fā)的組件庫。一個文件夾下有所有的官方插件,直到發(fā)現(xiàn)他們用了一個叫的工具。那么如何寫樣式同時單獨(dú)發(fā)布的組件如何引用樣式文件也是我們要解決的問題。 showImg(https://segmentfault.com/img/bVDD9H?w=2502&h=1222); 今年的 JSConf 大會上,受到 gridcont...

    lscho 評論0 收藏0
  • 手摸手,帶你用vue擼后臺 系列三(實(shí)戰(zhàn)篇)

    摘要:社區(qū)的認(rèn)可目前已經(jīng)是相關(guān)最多的開源項(xiàng)目了,體現(xiàn)出了社區(qū)對其的認(rèn)可。監(jiān)聽事件手動維護(hù)列表這樣我們就簡單的完成了拖拽排序。 完整項(xiàng)目地址:vue-element-admin 系類文章一:手摸手,帶你用vue擼后臺 系列一(基礎(chǔ)篇)系類文章二:手摸手,帶你用vue擼后臺 系列二(登錄權(quán)限篇)系類文章三:手摸手,帶你用vue擼后臺 系列三(實(shí)戰(zhàn)篇)系類文章四:手摸手,帶你用vue擼后臺 系列...

    Channe 評論0 收藏0
  • 手摸手,帶你用vue擼后臺 系列三(實(shí)戰(zhàn)篇)

    摘要:社區(qū)的認(rèn)可目前已經(jīng)是相關(guān)最多的開源項(xiàng)目了,體現(xiàn)出了社區(qū)對其的認(rèn)可。監(jiān)聽事件手動維護(hù)列表這樣我們就簡單的完成了拖拽排序。 完整項(xiàng)目地址:vue-element-admin 系類文章一:手摸手,帶你用vue擼后臺 系列一(基礎(chǔ)篇)系類文章二:手摸手,帶你用vue擼后臺 系列二(登錄權(quán)限篇)系類文章三:手摸手,帶你用vue擼后臺 系列三(實(shí)戰(zhàn)篇)系類文章四:手摸手,帶你用vue擼后臺 系列...

    zgbgx 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<