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的Border-radius轻松制作圆角
Dec 24 HTML / CSS
css3新增颜色表示方式分享
Apr 15 HTML / CSS
纯CSS实现右侧底部悬浮效果(悬浮QQ、微信、微博、邮箱等联系方式)
Apr 24 HTML / CSS
CSS3的Flexbox布局的简明入门指南
Apr 08 HTML / CSS
css3实现椭圆轨迹旋转的示例代码
Oct 29 HTML / CSS
CSS实现雨滴动画效果的实例代码
Oct 08 HTML / CSS
css3给背景图片加颜色遮罩的方法
Nov 05 HTML / CSS
canvas与html5实现视频截图功能示例
Dec 15 HTML / CSS
HTML5新特性之语义化标签
Oct 31 HTML / CSS
Html5获取高德地图定位天气的方法
Dec 26 HTML / CSS
CSS实现多个元素在盒子内两端对齐效果
Mar 30 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垃圾回收机制引用计数器概念分析
2013/06/24 PHP
php中的strpos使用示例
2014/02/27 PHP
CodeIgniter错误mysql_connect(): No such file or directory解决方法
2014/09/06 PHP
CI框架验证码CAPTCHA辅助函数用法实例
2014/11/05 PHP
微信公众平台DEMO(PHP)
2016/05/04 PHP
PHP中Cookie的使用详解(简单易懂)
2017/04/28 PHP
在图片上显示左右箭头类似翻页的代码
2013/03/04 Javascript
jquery阻止冒泡事件使用模拟事件
2013/09/06 Javascript
变量声明时命名与变量作为对象属性时命名的区别解析
2013/12/06 Javascript
NodeJS Express框架中处理404页面一个方式
2014/05/28 NodeJs
jquery代码实现简单的随机图片瀑布流效果
2015/04/20 Javascript
基于jQuey实现鼠标滑过变色(整行变色)
2015/12/07 Javascript
原生JS实现列表子元素顺序反转的方法分析
2018/07/02 Javascript
使用Element的InfiniteScroll 无限滚动组件报错的解决
2020/07/27 Javascript
Vue前端判断数据对象是否为空的实例
2020/09/02 Javascript
[00:34]DOTA2上海特级锦标赛 Spirit战队宣传片
2016/03/04 DOTA
Python多进程通信Queue、Pipe、Value、Array实例
2014/11/21 Python
Python内置函数dir详解
2015/04/14 Python
python sys,os,time模块的使用(包括时间格式的各种转换)
2018/04/27 Python
Python连接Mssql基础教程之Python库pymssql
2018/09/16 Python
Python 给定的经纬度标注在地图上的实现方法
2019/07/05 Python
python 叠加等边三角形的绘制的实现
2019/08/14 Python
Python3标准库之functools管理函数的工具详解
2020/02/27 Python
Python如何输出整数
2020/06/07 Python
keras topN显示,自编写代码案例
2020/07/03 Python
美国庭院家具购物网站:AlphaMarts
2019/04/10 全球购物
美国亚洲时尚和美容产品的一站式网上商店:Stylevana
2019/09/05 全球购物
日本最大的购物网站:日本乐天市场(Rakuten Ichiba)
2020/11/04 全球购物
高职教师岗位职责
2013/12/24 职场文书
信息技术培训感言
2014/03/06 职场文书
带香烟到学校抽的检讨书
2014/09/25 职场文书
2014年党风廉政建设工作总结
2014/11/19 职场文书
2015年安全生产月工作总结
2015/07/27 职场文书
2015年十月一日放假通知
2015/08/18 职场文书
Python进度条的使用
2021/05/17 Python
浅析CSS在DevTools 中架构演变
2021/10/05 HTML / CSS