Code Monkey home page Code Monkey logo

Comments (3)

xandeer avatar xandeer commented on June 19, 2024

vue-storegetter

from gank.

zgh0711 avatar zgh0711 commented on June 19, 2024

能说具体点吗,我是准备写两个样式表,一个day.css,一个night.css,现在不知道怎么能够动态的更换这二个样式表,
比如说,我有个切换按钮,在点击的时候,怎么去切换这二个样式表呢?

from gank.

xandeer avatar xandeer commented on June 19, 2024

你打算写两个样式表的话,切换某个顶层元素上的类名即可,

const $ele = document.findElementById('wrap')
const $btn = document.findElementById('toggleMode')

$btn.addEventListener('click', e => {
  const cl = $ele.classList
  if (cl.contains('day')) {
    cl.replace('day', 'night')
  } else {
    cl.replace('night', 'day')
  }
}, false)

我当初是定义了一个对象,然后根据对象里的数据更改某些元素的 styleconfig/index.js

const modes = {
  day: {
    background: '#f4f4f4',
    backgroundColor: '#f4f4f4',
    color: '#000',
    cellBg: '#fff',
  },
  night: {
    background: '#303030',
    backgroundColor: '#303030',
    color: '#ccc',
    cellBg: '#282c34',
  },
};

exports.modes = modes;

from gank.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.