Skip to content
This repository was archived by the owner on Dec 17, 2021. It is now read-only.

Latest commit

 

History

History
55 lines (41 loc) · 1.15 KB

readinline.md

File metadata and controls

55 lines (41 loc) · 1.15 KB

CSS/readInline()

This function returns one or more style properties from the given element's style attribute. These are properties that might have been defined statically or dynamically via JavaScript and are different from the element's computed style.

Import

import readInline from '@web-native-js/play-ui/src/css/readInline.js';

Syntax

// Get a single inline property
let value = readInline(el, name);

// Get a multiple inline properties
let values = readInline(el, [name]);

Parameters

  • el - HTMLElement: The source DOM element.
  • name - String|Array: The CSS property or list of properties to read. When an array, values are returnd as an object.

Return

  • String|Number - The value for a single property.
  • Object - The values for multiple properties.

Usage

<style>
div {
    background-color: yellow;
}
</style>
<div id="el" style="color:red"></div>
let el = document.querySelector('#el');

// Set attribute
let values = readInline(el, ['background-color', 'color']);

// Show
console.log(values);
/**
{
    backgroundColor: undefined,
    color: "red",
}
*/