UNPKG

kity

Version:
35 lines (28 loc) 799 B
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <meta content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"> <script src="../../dist/kitygraph.all.min.js"></script> <script> window.onload = function () { var paper = new kity.Paper( document.body ), operand = new kity.Text( 'c'), up = new kity.Text( '→' ); operand.setX( 100 ).setY( 100 ); operand.setStyle( "font-size", 20 ); up.setX( 98 ).setY( 90 ); paper.addShape( up ); paper.addShape( operand ); }; </script> <style> html, body { overflow: hidden; } </style> </head> <body> </body> </html>