The 'SIE' is an opensource SVG Animation rendering engine written in JavaScript for Edge and IE 11. It's lightweight, about 11kb (gzipped). SVG is a web standard language for drawing a vector graphics used in Inkscape, Illustlator and so on.
The SIE project is a community developing the SIE.
SIE - SVG's JavaScript Library
1, What's SIE
SIE is a OpenSource JavaScript library to display SVG files on the almost browser. SVG is a standard language for drawing vector graphics.
2, Licenses
SIE is distributed under the Mozilla Public License (MPL). You may copy, modify and re-distribute it.
You may obtain a copy of the License at
http://www.mozilla.org/MPL/
3, Usage
3.1, Edit HTML file
To display SVG files on the web browser, you need to edit the HTML file as the next:
<html>
<head>
<title>Your Web Page</title>
<script defer="defer" type="text/javascript" src="sie-mini.js"></script>
</head>
<body>
<object data="zeimusu_sakura_.svg" type="image/svg+xml" width="1000" height="1000"></object>
</body>
</html>
3.2, The 'script' element
Upload the 'sie-mini.js' file to your web server, and write this in the 'head' element of your HTML document.
<script defer="defer" type="text/javascript" src="sie-mini.js"></script>
3.3, The 'object' element
Upload the 'zeimusu_sakura_.svg' file to your web server, and write in your HTML document as the next:
<object data="zeimusu_sakura_.svg" type="image/svg+xml" width="1000" height="1000"></object>
3.4 Inline SVG
See Demo: http://sie.sourceforge.jp/svginhtml.html
4, Contact
4.1 Mailing List
sie-developers@lists.sourceforge.jp
4.2 Twitter
http://twitter.com/dhrname
5, Acknowledgement
revulo, bellbind, SourceForge.jp (http://sourceforge.JP/), the Mozilla project. thank you.
2011年4月1日、「SIE0.73」を公開しました。今回の修正点はバグの修正です。
version 0.72からの変更点
1, var文に対して、構文を整理した
2, GetSVGDocumentの_initメソッドに関して、クロージャの修正をした
3, createAtrributeNSメソッドについて整理と、Attrのnodevalueプロパティを修正
4, addEventListenerメソッドを修正して、マウスイベントに対処できるようにした
5, チケット #24648 「単位「%」の解釈が異常」を修正
6, SVGURIReferenceのvar文において、showの値が設定されていなかったので修正
7, 英語版であるREADME_EN.txtを同梱