Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
css-background-parser
Advanced tools
Parse an element’s CSS background properties to get a list of individual backgrounds
Parse an element’s CSS background properties to get a list of individual backgrounds.
This library is still a work in progress and is probably not very useful yet. It’s pre-1.0 and has no tests yet.
Available on npm as css-background-parser
, or in the browser as a global called cssBgParser
parseElementStyle(styleObject)
Takes a CSSStyleDeclaration
object and returns a BackgroundList
of backgrounds found in the styles.
In non-techo-babble, the only input is an object which represents an element’s style. It could be element.style
, the result of window.getComputedStyle(element)
, or a custom object that happens to have properties which are prefixed background
(backgroundColor
, backgroundSize
, etc.).
If you want the most accurate results, I suggest you use window.getComputedStyle(element)
— see the code examples below.
Since multiple backgrounds can be assigned to an element, this method will always return a BackgroundList
, even if there is only one background. Backgrounds are listed in order from top layer to bottom layer (in other words, the first layer is closest to the person looking at the screen). This means that the color
property will only be filled on the last Background
object in the list, representing the bottom layer.
A very basic example:
var style = getComputedStyle(someElement);
var bglist = cssBgParser.parseElementStyle(style);
console.log(bglist.backgrounds.length); // 1
console.log(bglist.backgrounds[0]); // Logs a Background object
Multiple backgrounds:
someElement.style.backgroundImage = 'linear-gradient(white, blue), url(/background.png)';
someElement.style.backgroundColor = 'black';
var style = getComputedStyle(someElement);
var bglist = cssBgParser.parseElementStyle(style);
console.log(bglist.backgrounds.length); // 2
console.log(bglist.backgrounds[0].image); // "linear-gradient(white, blue)"
console.log(bglist.backgrounds[1].image); // "url(http://example.com/background.png)"
console.log(bglist.backgrounds[0].color); // ""
console.log(bglist.backgrounds[1].color); // "rgb(0, 0, 0)"
The difference between element.style
and window.getComputedStyle(element)
:
someElement.style.background = 'red';
var parsedStyle = cssBgParser.parsesomeElemententStyle(elem.style);
console.log(parsedStyle.backgrounds[0]);
/*
* Background {
* attachment: "initial"
* clip: "initial"
* color: "red"
* image: "initial"
* origin: "initial"
* position: "initial"
* repeat: "initial"
* size: "initial"
* }
*/
var computed = getComputedStyle(elem);
var parsedComputed = cssBgParser.parseElementStyle(computed);
console.log(parsedComputed.backgrounds[0]);
/*
* Background {
* attachment: "scroll"
* clip: "border-box"
* color: "rgb(255, 0, 0)"
* image: "none"
* origin: "padding-box"
* position: "0% 0%"
* repeat: "repeat"
* size: "auto"
* }
*/
Background(props)
A simple object holding the properties of a single background for an element.
Background
objects contain the following properties, listed here with their default values (as defined by the CSS specification):
attachment
— "scroll"clip
— "border-box"color
— ""image
— "none"origin
— "padding-box"position
— "0% 0%"repeat
— "repeat"size
— "auto"A Background
can be instantiated with an optional first parameter, which is an object containing key/value pairs of properties to set. Any properties in the list above that are not found in the props
argument are set to their default values. In most cases, though, you’d only deal with Background
objects as return values from parseElementStyle()
.
toString()
Returns a string of all properties, in a format that matches browsers’ formatting of the background
CSS shorthand property (when an element has only a single background). For reference, the format is:
<color> <repeat> <attachment> <position> / <size> <origin> <clip>
BackgroundList(arrayOfBackgrounds)
A collection of Background
objects representing all the backgrounds used for a single element.
BackgroundList
objects only contain a single property called backgrounds
, which is an array of Background
objects.
A BackgroundList
can be instantiated with an optional first parameter, which is an array of Background
objects that gets assigned to the backgrounds
property. In most cases, though, you’d only deal with BackgroundList
objects as return values from parseElementStyle()
.
toString()
Returns a comma-separated string of all Background
s contained in the collection, calling .toString()
on each Background
. This matches browsers’ formatting of the background
CSS shorthand property (when an element has multiple backgrounds).FAQs
Parse an element’s CSS background properties to get a list of individual backgrounds
We found that css-background-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.