Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fxsvg

Package Overview
Dependencies
Maintainers
3
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxsvg

Functional SVG Handling Library

  • 0.2.6
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
136
increased by6.25%
Maintainers
3
Weekly downloads
 
Created
Source

FxSVG

Functional SVG Handling Library

Installation

FxSVG는 ECMAScript Module 로 작성된 패키지입니다.

다음과 같은 형태로 패키지를 제공합니다.

  • ECMAScript Module
  • 브라우저에서 사용할 수 있는 번들링 파일

ECMAScript Module

npm install fxsvg
import { $$createSVGTransformTranslate } from "fxsvg";
import FxSVG from "fxsvg";

const $el = document.querySelector("svg rect");
const transform = $$createSVGTransformTranslate({ tx: 10, ty: 20 });
FxSVG.getBaseTransformList($el).initialize(transform);

In a Browser

FxSVG는 SVG, ECMAScript 6+ 표준을 따르는 모던 브라우저만 지원합니다.

FxSVG는 window 객체의 $$ property를 namespace로 사용합니다.

npm install fxsvg
<script src="path/to/node_modules/fxsvg/dist/fxsvg.js"></script>
const { $$el } = $$;

const $rect = $$el(`<rect x="10" y="10" width="100" height="100"></rect>`);
const { controller } = $$.controlTranslateTransform()($rect);
controller.append({ tx: 10 }).append({ ty: 10 }).end();

Documentation

  • API Reference
  • Test

Contributing

FxSVG 개발에 참여하고 싶은 모든 분들을 환영합니다. FxSVG 코드에 기여하고 싶은 분은 아래 가이드를 참고해주세요.

Keywords

FAQs

Package last updated on 15 Jun 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc