asilinwei / Funny-CSS

The tool about CSS serialize and CSS selector identifier escape.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Funny-CSS

The tool about CSS serialize and CSS selector identifier escape (The robust polyfill of CSS.escape).

API

css.serialize(index, [format=false])

Serialize the Style Sheet by index in the document.

Example:

/* The first style sheet in the document. */
div, p {
    margin: 20px;	
}
p {
    padding: 20px;
}

Serialize the first Style Sheet:

css.serialize(0)
// => 
/*
    {
        0: { names: ['margin'], selectorText: 'div', margin: '20px', cssText: 'div { margin: 20px; }' },
        1: { names: ['margin', 'padding'], selectorText: 'p', margin: '20px', padding: '20px', cssText: 'p { margin: 20px; padding: 20px; }'  },
        length: 2
    }
 */

css.escape(selectorText)

The polyfill of CSS.escape.

Example:

css.escape('#()[]{}')
// => '\#\(\)\[\]\{\}'

Now look at this HTML element:

<div id="#()[]{}"></div>

Get this HTML element by selector:

document.querySelector('#' + '#()[]{}')
// => Error: '##()[]{}' is not a valid selector

document.querySelector('#' + css.escape('#()[]{}'))
// => Now, get this HTML element successfully.

About

The tool about CSS serialize and CSS selector identifier escape.

License:MIT License


Languages

Language:JavaScript 100.0%