canvas 2D画布基于createjs插件制作卡通草地上人物跑步运动场景特效。
[声明] 墨鱼部落格所有资源为用户免费分享产生,若发现您的权利被侵害,请点击后方链接查看并联系我们,我们尽快处理。免责声明|侵权处理流程
使用方法:
1、head引入js文件
<script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/easeljs.min.js"></script>
2、body引入HTML代码
<canvas id="mycanvas" width="800" height="500"></canvas> <script > // 图片预加载 function loadImages(sourse,callback){ var count = 0, images = {}, imgNum = 0; for(src in sourse){ imgNum++ } for(src in sourse){ images[src] = new Image(); images[src].onload = function(){ if(++count >= imgNum){ callback(images); } } images[src].src = sourse[src]; } } $(document).ready(function(){ var stage = new createjs.Stage("mycanvas") createjs.Ticker.addEventListener("tick", stageBreakHandler); // 图片预加载 var sources = { groundImg : "img/ground.png", hill1 : "img/hill1.png" , hill2 : "img/hill2.png" , ren : "img/ren.png" , }; var sp,ground,hill1,hill2 loadImages(sources, function(images){ // 天空背景 var sky = new createjs.Shape() sky.graphics.beginLinearGradientFill(["#7dcef6","#c1e2f2"],[0, 1], 0, 580, 0, 500).drawRect(0,0,800,500) // 山 hill1 = new createjs.Bitmap(images.hill1) hill1.set({x:-300,y:150,alpha:0.5,scaleX:3,scaleY:5}); hill1.iw = images.hill1.width hill2 = new createjs.Bitmap(images.hill2) hill2.set({x:210,y:500-220,scaleX:3,scaleY:3}); hill2.iw = images.hill2.width // 地板 ground = new createjs.Shape() ground.graphics.beginBitmapFill(images.groundImg).drawRect(0,0,800+images.groundImg.width,images.groundImg.height) ground.y = 500 - images.groundImg.height; ground.tileW = images.groundImg.width; // 人 var ss = new createjs.SpriteSheet({ "images": [images.ren], "frames": {"width":165,"height":292,count:64}, "animations" : { "run": [0,36,"jump",1.5], "jump":[36,63,"run"] } }) sp = new createjs.Sprite(ss,"run") sp.x = 100 sp.y = 500 - 292 - 79 stage.addChild(sky,hill1,hill2,ground, sp) stage.update(); }); function stageBreakHandler(event){ // event.delta -- 上一次tick到当前tick的ms var deltaS = event.delta / 1000; ground.x = (ground.x - deltaS * 150) % ground.tileW; hill1.x = (hill1.x - deltaS * 30); hill2.x = (hill2.x - deltaS * 30); sp.x+=5 if(sp.x>=800){ sp.x = 0 hill1.x = -300; hill2.x = 200; } stage.update(); } }) </script>
文件目录
本资源来自:代码 » HTML5实例 » canvas跑步人物动画场景特效
注:此资源非帝国CMS模板/特效/源码,需要帝国CMS整站模板源码的小伙伴,请移步 帝国CMS模板,感谢支持!
html5游客总数柱状图代码
« 上一篇
2019年04月23日
canvas线条爱心动画特效
下一篇 »
2019年04月23日
1、如非特殊说明,本站对本文提供的代码或者素材不拥有任何权利,其版权归原著者拥有。
2、以上提供的代码或者素材均为作者提供和网友推荐收集整理而来,仅供学习和研究使用。
3、如有侵犯你版权的,请来信(邮箱:48444431@qq.com)指出,核实后,本站将立即改正。
4、如有链接无法下载、失效或广告,请点击下面的报错或者联系墨鱼处理!
5、以上资源售价只是赞助,不代表代码或者素材本身价格。收取费用仅维持本站的服务器开销!
6、如无特殊说明,如:织梦或者帝国等开源CMS核心模板,那么默认提供的只是HTML模板!
7、所有代码素材效果均为演示打包,最终效果请参考演示效果,本站不提供任何技术支持和服务。
8、代码素材均为虚拟物品,演示和描述无错的情况下,无法进行退换服务。
2、以上提供的代码或者素材均为作者提供和网友推荐收集整理而来,仅供学习和研究使用。
3、如有侵犯你版权的,请来信(邮箱:48444431@qq.com)指出,核实后,本站将立即改正。
4、如有链接无法下载、失效或广告,请点击下面的报错或者联系墨鱼处理!
5、以上资源售价只是赞助,不代表代码或者素材本身价格。收取费用仅维持本站的服务器开销!
6、如无特殊说明,如:织梦或者帝国等开源CMS核心模板,那么默认提供的只是HTML模板!
7、所有代码素材效果均为演示打包,最终效果请参考演示效果,本站不提供任何技术支持和服务。
8、代码素材均为虚拟物品,演示和描述无错的情况下,无法进行退换服务。