Home Web Front-end JS Tutorial How to change skin in Vue?

How to change skin in Vue?

Jun 09, 2018 pm 06:08 PM
vue

This article mainly introduces the example practice of Vue skin change. Now I share it with you and give you a reference.

Recently, a project done by the company received a demand for website skin reskin, that is, switching themes. So how to switch the theme color? Switching the theme color is actually switching CSS. However, in the project, not only CSS needs to be changed, but icons and pictures also need to be switched according to the theme. So, I wrote an article to record the process of skinning in Vue, and let’s take a look at the effect first.

This article is mainly divided into three parts: CSS switching, icon switching and image switching.

CSS switching

Regarding CSS color switching, I searched and referred to the ElementUI solution. Generally speaking, it is divided into four steps

Create a new theme.css file in the static directory, and declare the CSS that needs to be replaced in this file.

.side-bar {
 background: linear-gradient(#B7A3FF, #879FFF) !important;
}

.side-bar .account-info {
 background: #8981D8 !important;
}
Copy after login

Declare all optional themes. Each color corresponds to a keyword for easy differentiation

colors: [{
 themeId: 1,
 familyPrimary: '#B7A3FF',
 familySecondary: '#879FFF',
 sideBarTop: '#8981D8'
}, {
 themeId: 2,
 familyPrimary: '#FDC5C5',
 familySecondary: '#F070A0',
 sideBarTop: '#E7829F'
}, {
 themeId: 3,
 familyPrimary: '#414D6C',
 familySecondary: '#2D1E3C',
 sideBarTop: '#423C50'
}]
Copy after login

Get theme.css through AJAX and replace the color value with keywords.

 getFile(`/static/theme.css`)
  .then(({data}) => {
   let style = getStyleTemplate(data)
  })

function getStyleTemplate (data) {
 const colorMap = {
  '#B7A3FF': 'familyPrimary',
  '#879FFF': 'familySecondary',
  '#8981D8': 'sideBarTop'
 }
 Object.keys(colorMap).forEach(key => {
  const value = colorMap[key]
  data = data.replace(new RegExp(key, 'ig'), value)
 })
 return data
}
Copy after login

Replace the keywords back to the corresponding color values ​​just generated, and add the style tag on the page

 getFile(`/static/theme.css`)
  .then(({data}) => {
   let style = getStyleTemplate(data)
   writeNewStyle(style, this.color)
  })

function writeNewStyle (originalStyle, colors) {
 let oldEl = document.getElementById('temp-style')
 let cssText = originalStyle
 Object.keys(colors).forEach(key => {
  cssText = cssText.replace(new RegExp(key, 'ig'), colors[key])
 })
 const style = document.createElement('style')
 style.innerText = cssText
 style.id = 'temp-style'
 oldEl ? document.head.replaceChild(style, oldEl) : document.head.appendChild(style)
}
Copy after login

Icon switching

Because When the project was first started, the need for skin change was not considered, so all icons were referenced using img tags.

 <img src="../../assets/icon_edit.svg">
Copy after login

This made it impossible to dynamically switch colors for icons, so I decided Change to font file to use icons. Here is a website recommended, icomoon, which can easily convert images into font files. Icons are also very suitable for use through font. We can modify the size and color of the icon more conveniently.

Through online conversion, we put the downloaded font file into the project and create a new CSS file to declare all icons.

@font-face {
 font-family: &#39;icomoon&#39;;
 src: url(&#39;../assets/fonts/icomoon.eot?vpkwno&#39;);
 src: url(&#39;../assets/fonts/icomoon.eot?vpkwno#iefix&#39;) format(&#39;embedded-opentype&#39;),
 url(&#39;../assets/fonts/icomoon.ttf?vpkwno&#39;) format(&#39;truetype&#39;),
 url(&#39;../assets/fonts/icomoon.woff?vpkwno&#39;) format(&#39;woff&#39;),
 url(&#39;../assets/fonts/icomoon.svg?vpkwno#icomoon&#39;) format(&#39;svg&#39;);
 font-weight: normal;
 font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
 /* use !important to prevent issues with browser extensions that change fonts */
 font-family: &#39;icomoon&#39; !important;
 speak: none;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 text-transform: none;
 line-height: 1;
 vertical-align: sub;

 /* Better Font Rendering =========== */
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

.icon-edit:before {
 content: "\e900";
}
Copy after login

After that, you can reference the icon through CSS class name.

 <span class="icon-edit"></span>
Copy after login

In order to make the theme effective, we also need to write the CSS of the icon into the theme.css file

.icon_edit:before {
 background-image: linear-gradient(-135deg, #879FFF 0%, #B7A3FF 100%);
}
Copy after login

Image switching

Also in the project There are many placeholder images or other images that change as the theme changes. By introducing all pictures and using file names to distinguish pictures corresponding to different themes. When you click to switch the theme, switch to the file corresponding to the theme and you can switch the image. To do this, I wrote a mixin and introduced the mixin into the component.

<img :src="userImg || placeholderWoman">
Copy after login

placeholderMixin

let callback
const placeholderMixin = {
 data () {
  return {
   placeholderWoman: &#39;&#39;,
   placeHolderNoReply: &#39;&#39;,
   placeHolderNothing: &#39;&#39;
  }
 },
 created () {
  let themeId = localStorage.getItem(&#39;themeId&#39;)
  let theme = themeId2Name(themeId)
  this.setThemeValue(theme)
  callback = (theme) => {
   this.setThemeValue(theme)
  }
  bus.$on(&#39;changeTheme&#39;, callback)
 },
 destroyed () {
  bus.$off(&#39;changeTheme&#39;, callback)
 },
 methods: {
  setThemeValue (theme) {
   this.placeholderWoman = require(`@/assets/placeholder_woman_${theme}.svg`)
   this.placeHolderNoReply = require(`@/assets/icon_noreply_${theme}.svg`)
   this.placeHolderNothing = require(`@/assets/icon_nothing_${theme}.svg`)
  }
 }
}
Copy after login

When you click to switch the theme, a changeTheme event will be emitted. When each component receives the changeTheme event, it will reassign the value of the image, thus achieving the effect of switching images.

let theme = themeId2Name(this.themeId)
bus.$emit(&#39;changeTheme&#39;, theme)
Copy after login

This also achieves the effect of switching themes, but this method requires the introduction of mixins in almost all business components. If there is a better method, please feel free to communicate with me.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to implement table support height percentage in bootstrap

How to implement child sibling components in Vue2.0 Data interaction between

How to implement custom global methods in vue

The above is the detailed content of How to change skin in Vue?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use bootstrap in vue How to use bootstrap in vue Apr 07, 2025 pm 11:33 PM

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

How to add functions to buttons for vue How to add functions to buttons for vue Apr 08, 2025 am 08:51 AM

You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

How to reference js file with vue.js How to reference js file with vue.js Apr 07, 2025 pm 11:27 PM

There are three ways to refer to JS files in Vue.js: directly specify the path using the &lt;script&gt; tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

How to use watch in vue How to use watch in vue Apr 07, 2025 pm 11:36 PM

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

What does vue multi-page development mean? What does vue multi-page development mean? Apr 07, 2025 pm 11:57 PM

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

How to return to previous page by vue How to return to previous page by vue Apr 07, 2025 pm 11:30 PM

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses &lt;router-link to=&quot;/&quot; component window.history.back(), and the method selection depends on the scene.

How to query the version of vue How to query the version of vue Apr 07, 2025 pm 11:24 PM

You can query the Vue version by using Vue Devtools to view the Vue tab in the browser's console. Use npm to run the "npm list -g vue" command. Find the Vue item in the "dependencies" object of the package.json file. For Vue CLI projects, run the "vue --version" command. Check the version information in the &lt;script&gt; tag in the HTML file that refers to the Vue file.

How to use vue traversal How to use vue traversal Apr 07, 2025 pm 11:48 PM

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values ​​for each element; and the .map method can convert array elements into new arrays.

See all articles