svnno****@sourc*****
svnno****@sourc*****
2011年 3月 31日 (木) 19:53:18 JST
Revision: 2537 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2537 Author: dhrname Date: 2011-03-31 19:53:18 +0900 (Thu, 31 Mar 2011) Log Message: ----------- Added Paths: ----------- trunk/README_EN.txt Added: trunk/README_EN.txt =================================================================== --- trunk/README_EN.txt (rev 0) +++ trunk/README_EN.txt 2011-03-31 10:53:18 UTC (rev 2537) @@ -0,0 +1,55 @@ +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 + + Copy the 'sie-mini.js' file to your web server, and write this in the 'head' element of your web page. + + <script defer="defer" type="text/javascript" src="sie-mini.js"></script> + + 3.3, The 'object' element + + Copy the 'zeimusu_sakura_.svg' file to your web server, and write the next in the 'body' element. + The code 'width (height) ="1000"' set to 1000(px) for the width (height) of the svg image. + + <object data="zeimusu_sakura_.svg" type="image/svg+xml" width="1000" height="1000"></object> + +4, Contact + + 4.1 Mailing List + + sie-d****@lists***** + + 4.2 Twitter + + http://twitter.com/dhrname + +5, Acknowledgement + + revulo, bellbind, SourceForge.jp (http://sourceforge.JP/), the Mozilla project. thank you. \ No newline at end of file