博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用CSS实现阴阳八卦图等图形
阅读量:6008 次
发布时间:2019-06-20

本文共 1397 字,大约阅读时间需要 4 分钟。

hot3.png

CSS还是比较强大的,可以实现中国古典的“阴阳八卦图”等形状。

正方形

#rectangle { width: 200px; height: 100px; backgrount-color: red; }  #circle { width: 100px; height: 100px; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; background-color: red; }

椭圆

#triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red; }

直角三角形

直角边left-top
#triangle-leftbottom { width: 0; height: 0; border-left: 100px solid red; border-top: 100px solid transparent; }
直角边right-top
#triangle-righttop { width: 0; height: 0; border-right: 100px solid red; border-top: 100px solid transparent; }

梯形

#parallelogram { width: 150px; height: 100px; -webkit-transform: skew(20deg); -moz-transform: skew(20deg); transform: skew(20deg); background: red; }

鸡蛋

#yin-yang { width: 96px; height: 48px; background: #eee; border-color: red; border-style: solid; border-width: 2px 2px 55px 2px; border-radius: 100%; position: relative; }  #yin-yang:before { content: ""; position: absolute; top: 50%; left: 0; background: #eee; border: 18px solid red; border-radius: 100%; width: 12px; height: 12px; }  #yin-yang:after { content: ""; position: absolute; top: 50%; left: 50%; background: red; border: 18px solid #eee; border-radius:100%; width: 12px; height: 12px; } 八卦图展示不出来,蛋疼,请下载HTML文件 或者 去  查看
更多文章请参考:

转载于:https://my.oschina.net/jiutianniao/blog/399515

你可能感兴趣的文章
命令模式
查看>>
护航者,腾讯云: 2017年度游戏行业DDoS态势报告—回溯与前瞻
查看>>
测试测试
查看>>
附实例!图解React的生命周期及执行顺序
查看>>
Nginx基础应用
查看>>
java TCP/IP网络通信基本案列
查看>>
关于“invalid input syntax for type boolean”
查看>>
隐私政策
查看>>
selenium系列->Actions命令实例整理->keyPress(Lo,keySeq)
查看>>
字符串String
查看>>
FTP
查看>>
Docker学习笔记二:Docker的安装
查看>>
gephi生成图(java版)
查看>>
营销圈的软文写作有什么优势?
查看>>
可重入锁和非可重入锁
查看>>
mysql
查看>>
vsftp的搭建配置
查看>>
适用于mac的Tor浏览器?
查看>>
swap扩展
查看>>
Oracle 大举裁员暗示了什么?
查看>>