0.0.9 • Published 6 years ago

shape-poly v0.0.9

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

shape-poly npm version

npm.io

Make CSS Polygon Shape

$ npm install shape-poly

Options

import {poly, be, dom} from "shape-poly";

interface PolyInterface {
  side?: number;
  split?: number;
  strokeWidth: number | string;
  className?: string;
  starRadius?: number; // inner-radius(0 ~ 100%)
  container?: HTMLElement;
  direction?: DIRECTION;
  stroke?: string; // color
}

function poly(options: PolyInterface);
function dom(el: HTMLElement);
function be(el: HTMLElement, options: PolyInterface);

How to Use

<script src="//daybrush.github.io/shape-poly/release/latest/shapepoly.min.js"></script>
<div class="triangle" data-side="5" data-stroke-width="11px" style="width: 100px"></div>
import {poly, be, dom} from "shape-poly";

// 10 star
const el = poly({starRadius: 50, side: 10, strokeWidth: "5px"});

document.body.appendChild(el);

// change 10 star to 5 polygon
be(el, {side: 5, strokeWidth: "5px"})

// data-side
// data-star-radius
// data-stroke-width
// data-stroke
// data-fill
// data-direction
dom(document.querySelector(".triangle"));
0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago