HTML5 用动画的表现形式装载图像 _html5教程技巧
程序员文章站
2022-05-06 20:21:42
...
示例使用HTML5的canvas标签和Javascript脚本,简单的编写了装载图片效果,请使用支持HTML5的浏览器预览效果:
下图为以逐渐横向栅格的效果图
html部分:
JavaScript部分:
下图为以逐渐横向栅格的效果图
html部分:
XML/HTML Code复制内容到剪贴板
- /span>>
- html lang="en">
- head>
- meta charset="UTF-8">
- title>html5 装载图片title>
- head>
- body>
- button onclick="drawImg1()">从左到右button>
- button onclick="drawImg2()">从*到左右两边button>
- button onclick="drawImg3()">以逐渐横向栅格button>
- hr/>
- canvas class="canvas" id="canvas" width="600" height="300">canvas>
- body>
- html>
JavaScript部分:
XML/HTML Code复制内容到剪贴板
- //初始化
- var canvas = document.getElementById("canvas"),
- context = canvas.getContext("2d"),
- image = new Image();
- image.src = "img/test.jpg";
- //从左到右加载方法
- function drawImg1(){
- var drawWidth = 0,
- interval = setInterval(function(){
- context.drawImage(image, 0, 0, drawWidth, image.height, 0, 0, drawWidth, image.height);
- drawWidth += 20;
- if(drawWidth > canvas.width) clearInterval(interval);
- },100);
- }
- //从*向左右两边拉开加载方法
- function drawImg2(){
- var drawWidth = 0,
- drawLeft = canvas.width/2,
- interval = setInterval(function(){
- context.drawImage(image, drawLeft, 0, drawWidth, image.height, drawLeft, 0, drawWidth, image.height);
- drawWidth += 20;
- drawLeft -= 10;
- if(drawLeft 0) clearInterval(interval);
- },100);
- }
- //以逐渐横向栅格加载方法
- function drawImg3(){
- var drawWidth = 0,
- spaceWidth = canvas.width/20, //10指分割的块数
- interval = setInterval(function(){
- for(var i = 0;i20;i++){
- context.drawImage(image, i*spaceWidth, 0, drawWidth, image.height, i*spaceWidth, 0, drawWidth, image.height);
- }
- drawWidth += 5;
- if(drawWidth > spaceWidth) clearInterval(interval);
- },100);
- }
以上内容是小编给大家介绍的HTML5 用动画的表现形式装载图像,希望对大家有所帮助!
上一篇: 怎么样将图片加入ps中
推荐阅读
-
HTML5 用动画的表现形式装载图像
-
HTML5 用动画的表现形式装载图像
-
用HTML5制作一个简单的桌球游戏的教程_html5教程技巧
-
用HTML5.0制作网页的教程_html5教程技巧
-
HTML5 用动画的表现形式装载图像 _html5教程技巧
-
用html5绘制折线图的实例代码_html5教程技巧
-
用HTML5制作一个简单的桌球游戏的教程_html5教程技巧
-
用HTML5实现手机摇一摇的功能的教程_html5教程技巧
-
HTML5 Canvas旋转动画的2个代码例子(一个旋转的太极图效果)_html5教程技巧
-
html5 canvas-2.用canvas制作一个猜字母的小游戏_html5教程技巧