代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Css
】
Canvas画先天八卦
作者:
炎峙
/ 发布于
2016/5/10
/
877
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>先天八卦</title> </head> <body> <canvas id="myCanvas" width="800" height="800"> Your browser does not support the canvas element </canvas> <script type="text/javascript"> (function () { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); context.font = "18px \"Microsoft YaHei\""; var rotate45d = function () { context.translate(400, 400); context.rotate(Math.PI / 4); context.translate(-400, -400); } var drawGua = function (first, second, third, text, text2) { var widthCanvas = canvas.width, heightCanvas = canvas.height; var widthGua = 100, heightGua = 10, marginX = 10, marginY = 15; var firstX = (widthCanvas - widthGua) / 2, secondX = (widthCanvas + marginX) / 2; var firstY = heightCanvas / 16, secondY = firstY + heightGua + marginY, thirdY = secondY + heightGua + marginY, fourthY = thirdY + heightGua + marginY; context.fillStyle = "black"; if (first) { context.fillRect(firstX, firstY, widthGua, heightGua); } else { context.fillRect(firstX, firstY, (widthGua - marginX) / 2, heightGua); context.fillRect(secondX, firstY, (widthGua - marginX) / 2, heightGua); } if (second) { context.fillRect(firstX, secondY, widthGua, heightGua); } else { context.fillRect(firstX, secondY, (widthGua - marginX) / 2, heightGua); context.fillRect(secondX, secondY, (widthGua - marginX) / 2, heightGua); } if (third) { context.fillRect(firstX, thirdY, widthGua, heightGua); } else { context.fillRect(firstX, thirdY, (widthGua - marginX) / 2, heightGua); context.fillRect(secondX, thirdY, (widthGua - marginX) / 2, heightGua); } context.fillStyle = "red"; context.fillText(text, firstX + 20, fourthY + 12); context.fillStyle = "blue"; context.fillText(text2, firstX + 20, fourthY + 36); } drawGua(true, true, true, "乾 天 1", "父 南"); rotate45d(); drawGua(true, true, false, "巽 风 5", " 少女"); rotate45d(); drawGua(false, true, false, "坎 水 6", "中女 西"); rotate45d(); drawGua(true, false, false, "艮 山 7", " 长女"); rotate45d(); drawGua(false, false, false, "坤 地 8", "母 北"); rotate45d(); drawGua(false, false, true, "震 雷 4", " 少男"); rotate45d(); drawGua(true, false, true, "离 火 3", "中男 东"); rotate45d(); drawGua(false, true, true, "兑 泽 2", " 长男"); })(); </script> </body> </html>
试试其它关键字
八卦
Canvas
同语言下
.
前端PC-移动端CSS公共样式+HTML
.
手机端页面通用样式
.
H5页面通用头部设置
.
elect默认样式美化代码兼容移动端和pc端
.
按钮效果 css
.
唤醒app
.
放大效果
.
html5+css3实现上拉和下拉刷新
.
html上传图片后,在页面显示上传的图片
.
html5实现点击弹出图片
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
炎峙
贡献的其它代码
(
12
)
.
过urllib2获取带有中文参数的url内容
.
Mybatis like查询的写法-
.
文件类型判断的处理类
.
导出数据到文件
.
获取机器状态
.
给Textarea文本框添加行号功能
.
Canvas画先天八卦
.
复制 span 标记中的内容
.
周期性方程(追赶法)
.
查询数据库的存在情况
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3