HTML5+Canvas+CSS3实现齐天大圣孙悟空腾云驾雾效果


Posted in HTML / CSS onApril 26, 2016

使用HTML5的canvas画的孙悟空,CSS3画的白云飘飘。

效果图:

HTML5+Canvas+CSS3实现齐天大圣孙悟空腾云驾雾效果

代码如下:

CSS Code复制内容到剪贴板
  1. <!doctype html>   
  2. <html>   
  3. <head>   
  4. <meta charset="utf-8">   
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">   
  6. <meta name="description" content="">   
  7. <meta name="viewport" content="width=device-width, initial-scale=1">   
  8. <title>HTML5+CSS3实现齐天大圣腾云驾雾</title>   
  9. <style type="text/css">   
  10. * {   
  11. margin: 0;   
  12. padding: 0;   
  13. border: 0;   
  14. }   
  15. html, body {   
  16. margin: 0;   
  17. }   
  18. @-webkit-keyframes STAR-MOVE {   
  19. from {   
  20. background-position: 0% 0%;   
  21. }   
  22. to {   
  23. background-position: 600% 0%;   
  24. }   
  25. }   
  26. @keyframes STAR-MOVE {   
  27. from {   
  28. background-position: 0% 0%;   
  29. }   
  30. to {   
  31. background-position: 600% 0%;   
  32. }   
  33. }   
  34. .wall {   
  35. positionabsolute;   
  36. top: 0;   
  37. left: 0;   
  38. bottombottom: 0;   
  39. rightright: 0;   
  40. }   
  41. div#background {   
  42. backgroundblack url('http://hovertree.com/texiao/html5/30/img/background.png'repeat-x 5% 0%;   
  43. background-size: cover;   
  44. -webkit-animation: STAR-MOVE 200s linear infinite;   
  45. -moz-animation: STAR-MOVE 200s linear infinite;   
  46. -ms-animation: STAR-MOVE 200s linear infinite;   
  47. animation: STAR-MOVE 200s linear infinite;   
  48. }   
  49. div#midground {   
  50. backgroundurl('http://hovertree.com/texiao/html5/30/img/midground.png')repeat 20% 0%;   
  51. z-index: 1;   
  52. -webkit-animation: STAR-MOVE 100s linear infinite;   
  53. -moz-animation: STAR-MOVE 100s linear infinite;   
  54. -ms-animation: STAR-MOVE 100s linear infinite;   
  55. animation: STAR-MOVE 100s linear infinite;   
  56. }   
  57. div#foreground {   
  58. backgroundurl('http://hovertree.com/texiao/html5/30/img/foreground.png')repeat 35% 0%;   
  59. z-index: 2;   
  60. -webkit-animation: STAR-MOVE 50s linear infinite;   
  61. -moz-animation: STAR-MOVE 50s linear infinite;   
  62. -ms-animation: STAR-MOVE 50s linear infinite;   
  63. animation: STAR-MOVE 50s linear infinite;   
  64. }#hovertreewk{position:absolute;z-index:9999;top:0px;bottombottom:0px;left:0px;rightright:0px;margin:auto;}   
  65. </style>   
  66. </head>   
  67. <body>   
  68. <div style="text-align:center;position:absolute;z-index:9;color:white"><h1>齐天大圣腾云驾雾</h1></div>   
  69. <div id="background" class="wall"></div>   
  70. <div id="midground" class="wall"></div>   
  71. <div id="foreground" class="wall"></div>   
  72. <canvas width="650" height="478" id="hovertreewk"></canvas>   
  73. <script src="http://hovertree.com/texiao/html5/30/js/hovertreewk.js"></script>   
  74. </body>   
  75. </html>  

关于HTML5+Canvas+CSS3实现齐天大圣孙悟空腾云驾雾的代码就给大家介绍完毕,希望对大家有所帮助!

HTML / CSS 相关文章推荐
纯CSS3实现鼠标悬停提示气泡效果
Feb 28 HTML / CSS
使用CSS媒体查询(Media Queries)和JavaScript判断浏览器设备类型的方法
Apr 03 HTML / CSS
一款css实现的鼠标经过按钮的特效
Sep 11 HTML / CSS
CSS中越界问题的经典解决方案【推荐】
Apr 19 HTML / CSS
CSS3中媒体查询结合rem布局适配手机屏幕
Jun 10 HTML / CSS
CSS3 毛玻璃效果
Aug 14 HTML / CSS
使用phonegap查找联系人的实现方法
Mar 31 HTML / CSS
HTML5拖拽API经典实例详解
Apr 20 HTML / CSS
Html5之title吸顶功能
Jun 04 HTML / CSS
HTML5中input输入框默认提示文字向左向右移动的示例代码
Sep 10 HTML / CSS
CSS基础详解
Oct 16 HTML / CSS
css 边框添加四个角的实现代码
Oct 16 HTML / CSS
HTML5标签嵌套规则详解【必看】
Apr 26 #HTML / CSS
HTML 5.1来了 9月份正式发布 更新内容预览
Apr 26 #HTML / CSS
HTML5本地数据库基础操作详解
Apr 26 #HTML / CSS
HTML5移动端手机网站开发流程
Apr 25 #HTML / CSS
基于html5绘制圆形多角图案
Apr 21 #HTML / CSS
浅析border-radius如何兼容IE
Apr 19 #HTML / CSS
如何利用input事件来监听移动端的输入
Apr 15 #HTML / CSS
You might like
PHP的ASP防火墙
2006/10/09 PHP
实现获取http内容的php函数分享
2014/02/16 PHP
PHP云打印类完整示例
2016/10/15 PHP
phpQuery采集网页实现代码实例
2020/04/02 PHP
jQuery each()小议
2010/03/18 Javascript
javascript下对于事件、事件流、事件触发的顺序随便说说
2010/07/17 Javascript
关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器
2014/02/11 Javascript
简单方法判断JavaScript对象为null或者属性为空
2014/09/26 Javascript
jQuery中position()方法用法实例
2015/01/16 Javascript
jQuery中animate用法实例分析
2015/03/09 Javascript
检测一个函数是否是JavaScript原生函数的小技巧
2015/03/13 Javascript
微信小程序教程系列之视图层的条件渲染(10)
2017/04/19 Javascript
easyui combogrid实现本地模糊搜索过滤多列
2017/05/13 Javascript
ES6 class的应用实例分析
2019/06/27 Javascript
Vuex的实战使用详解
2019/10/31 Javascript
openlayers4实现点动态扩散
2020/08/17 Javascript
原生js实现下拉框选择组件
2021/01/20 Javascript
Python里隐藏的“禅”
2014/06/16 Python
优化Python代码使其加快作用域内的查找
2015/03/30 Python
Python做文本按行去重的实现方法
2016/10/19 Python
Python获取SQLite查询结果表列名的方法
2017/06/21 Python
Python中浅拷贝copy与深拷贝deepcopy的简单理解
2018/10/26 Python
python用post访问restful服务接口的方法
2018/12/07 Python
Python基于mysql实现学生管理系统
2019/02/21 Python
Python学习笔记之抓取某只基金历史净值数据实战案例
2019/06/03 Python
pandas读取CSV文件时查看修改各列的数据类型格式
2019/07/07 Python
Django模板之基本的 for 循环 和 List内容的显示方式
2020/03/31 Python
Python Selenium库的基本使用教程
2021/01/04 Python
贝玲妃美国官方网站:Benefit美国
2016/08/28 全球购物
Araks官网:纽约内衣品牌
2020/10/15 全球购物
电焊工岗位职责
2014/03/06 职场文书
我的长生果教学反思
2014/04/28 职场文书
考研英语辞职信
2015/05/13 职场文书
2016年度先进班组事迹材料
2016/03/01 职场文书
使用PDF.js渲染canvas实现预览pdf的效果示例
2021/04/17 Javascript
如何用python反转图片,视频
2021/04/24 Python