动态插入css
insert a string of css into the <head>
or custom element
var appendStyleCss = require('append-style-css'); var styleElement = appendStyleCss('body { background:blue; }'); api
var appendStyleCss = require('append-style-css'); var styleElement = appendStyleCss(css, opts);
Insert some CSS into the page.
opts.container
- Which HTMLElement to use as the base mounting point, defaults to
document.querySelector('head')
.
opts.prepend
- Add the CSS at the top level of the container instead of at the bottom level (default).
Sometimes you may want to put the default CSS in front of you so that it can be easily overridden by user styles
opts.id
- Set the attribute of id for container
opts.isClear
- Whether to clear the added css string
npm run example
版权声明:
1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。2、网站不提供资料下载,如需下载请到原作者页面进行下载。