4.1.4 • Published 6 years ago

cssobj-plugin-cssom v4.1.4

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

cssobj-plugin-cssom

Join the chat at https://gitter.im/css-in-js/cssobj

Apply cssobj Virtual CSS into browser's CSSOM.

This plugin already integrated into cssobj, don't apply it twice if you use cssobj.

Usage

var cssobj_core = require('cssobj-core')
var pluginCSSOM = require('cssobj-plugin-cssom')
var cssobj = cssobj_core({plugins: [pluginCSSOM(option)] })
cssobj(obj)

// cssobj will auto applied into <head>

Install

npm install cssobj/cssobj-plugin-cssom

API

var plugin = pluginCSSOM(option)

Get plugin function to apply, pass option.

PARAMS

option

  • name : {string} The id for <style> tag, if omit, will using random string.

  • attrs : {object} The key/val to apply to <style> tag as attributes.

RETURN

A function can be as cssobj plugin.

Example

pluginCSSOM({name:'index-page-style'})

pluginCSSOM({name:'index-page-style', attrs:{type:'text/css', media:'screen'} })

Helpers

This plugin can use with plugin-csstext to display cssText from generated CSSOM.

4.1.4

6 years ago

4.1.3

6 years ago

3.0.2

7 years ago