Skip to content

small tools to create html dom element in Client Side

License

Notifications You must be signed in to change notification settings

Srabutdotcom/html-dom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

html-dom

Simple tools to create html dom

Usage

To create HTML Element use l

import { l } from "./html-dom.js";
// create simple div element containt text string 'test'
l.div("test");
// create simple div with attribute class 'className'
l.div("with class Name", { class: "className" });
// create div with children
l.div([
    "first child text", 
    l.div("second child"), 
    l.div("third child"), {id: "third"}
], { id: "main" });

Output

  • Simple div with 'test' string
<div>test</div>
  • Simple div with class 'className'
<div class='className'>with class Name</div>
  • Simple div with children
<div id='main'>
    first child text
    <div>second child</div>
    <div id='third'>third child</div>
</div>

Usage

To create SVG Element use s

import { s } from "./html-dom.js";
s.svg([
  s.line([], {
    stroke: "black",
    "stroke-width": "2",
    "stroke-linecap": "round",
    x1: "2",
    x2: "14",
    y1: "2",
    y2: "14",
  }),
  s.line([], {
    stroke: "black",
    "stroke-width": "2",
    "stroke-linecap": "round",
    x1: "2",
    x2: "14",
    y1: "14",
    y2: "2",
  }),
], { width: "15", height: "15", viewBox: "0 0 15 15", class: "z-30 hide" });

Output

  • Simple close svg
<svg width="15" height="15" viewBox="0 0 15 15" class="z-30 hide">
    <line stroke="black" stroke-width="2" stroke-linecap="round" x1="2" x2="14" y1="2" y2="14"></line>
    <line stroke="black" stroke-width="2" stroke-linecap="round" x1="2" x2="14" y1="14" y2="2"></line>
</svg>