This package has been deprecated

Author message:

bye~

luobotang-addstyle

0.1.2 • Public • Published

AddStyle

JavaScript,将 CSS 内容以添加 style 节点方式应用到页面。

安装

npm install luobotang-addstyle

用法

AddStyle('p { color: red; }')
AddStyle({p: {color: 'blue'}})

CSS 规则可以通过多种方式传入:

1、规则文本

例如:

'p { color: red; } strong { font-weight: bold; }'

2、规则对象

例如:

{
    p: {
        color: 'red'
    },
    strong: 'font-weight: bold'
}

3、规则数组

例如:

[
    ['p', 'color: red;'],
    ['strong', {
        'font-weight': 'bold'
    }]
]

注:如示例中所示,CSS 规则声明支持文本或对象形式。

兼容性

在 IE8+、Chrome 测试通过。

Readme

Keywords

Package Sidebar

Install

npm i luobotang-addstyle

Weekly Downloads

1

Version

0.1.2

License

MIT

Last publish

Collaborators

  • luobo-modules