您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

35 行
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>