`
wuzijingaip
  • 浏览: 329958 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

html5 canvas demo 好列子

阅读更多



<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   <title>TextCanvas Demo</title>


<script>
var video = document.querySelector('video');
var togglePlay = document.querySelector('#play');
var position = document.querySelector('#position');
var canvas = document.querySelector('canvas');
var ctx = canvas.getContext('2d');

addEvent(togglePlay, 'click', function () {
  video.playbackRate = 0.5;
  if (video.paused) {
    if (video.ended) video.currentTime = 0;
    video.play();
    this.value = "pause";
  } else {
    video.pause();
    this.value = "play";
  }
});

addEvent(video, 'timeupdate', function () {
  position.innerHTML = asTime(this.currentTime);

  // ctx.restore();
  ctx.drawImage(video, 0, 0, video.width, video.height, 0, 0, canvas.width, canvas.height);
});

addEvent(video, 'ended', function () {
  togglePlay.value = "play";
});

addEvent(video, 'canplay', function () {
  video.muted = true;
  document.querySelector('#duration').innerHTML = asTime(this.duration);
  startCanvas();
});


function startCanvas() {
  canvas.setAttribute('height', Math.floor(video.height));
  canvas.setAttribute('width', Math.floor(video.width));
 
  ctx.translate(canvas.width/2, canvas.height/2);
  ctx.scale(-1, 1);
  ctx.translate(-canvas.width/2, -canvas.height/2);
  ctx.drawImage(video, 0, 0, video.width, video.height, 0, 0, canvas.width, canvas.height);

  // var mirror = canvas.height * 0.6;
  // var grad = ctx.createLinearGradient(0, 0, 0, mirror);
  // grad.addColorStop(0, 'rgba(0, 0, 0, 0.5)');
  // grad.addColorStop(1, 'rgba(0, 0, 0, 1)');
  // ctx.fillStyle = grad;
  // ctx.rect(0, 0, canvas.width, mirror);
  // ctx.fill();
  // ctx.save(); 
}

function asTime(t) {
  t = Math.round(t);
  var s = t % 60;
  var m = Math.round(t / 60);
 
  return two(m) + ':' + two(s);
}

function two(s) {
  s += "";
  if (s.length < 2) s = "0" + s;
  return s;
}
</script>

   <script type="text/javascript">
 

function TextCanvas(container) {
    this.container = container;
if (!container.style.position)
container.style.position = 'relative';
    var canvas = document.createElement('canvas');
    this.canvas = canvas;
canvas.style.position = 'absolute';
    container.appendChild(canvas);
    this.labels = [];
}

// Font and text properties.  These are applied to strings that are
// rendered with drawString.
TextCanvas.CSSStringProperties = 'color direction fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight letterSpacing lineHeight textAlign textDecoration textIndent textShadow textTransform unicodeBidi whiteSpace wordSpacing'.split(' ');

TextCanvas.prototype.getContext = function(contextID) {
   var ctx = this.canvas.getContext(contextID);
if (contextID == '2d')
this.attachMethods(ctx, this);
return ctx;
};

TextCanvas.prototype.setDimensions = function(width, height) {
var container = this.container;
var canvas = this.canvas;
    // "canvas.width = width" doesn't work in Safari
    canvas.setAttribute('width', width);
    canvas.setAttribute('height', height);
this.container.style.width = width;
this.container.style.height = height;
}

TextCanvas.prototype.clear = function() {
    var canvas = this.canvas;
var ctx = canvas.getContext("2d");
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (var i = 0; i < this.labels.length; i++)
this.container.removeChild(this.labels[i]);
this.labels = [];
};

TextCanvas.prototype.attachMethods = function(ctx, controller) {
ctx.drawString = function(x, y, string) {
controller.addLabel(x, y, string);
};

ctx.clear = function () {
controller.clear();
};
   
    ctx.stringStyle = controller.container.style;
};

TextCanvas.prototype.addLabel = function(x, y, string) {
var label = document.createElement('div');
    label.innerHTML = string;
    var style = this.container.style;
    var cssNames = TextCanvas.CSSStringProperties;
    for (var i = 0; i < cssNames.length; i++) {
        var name = cssNames[i];
        label.style[name] = style[name];
    }
label.style.position = 'absolute';
label.style.left = x;
label.style.top = y;
this.container.appendChild(label);
this.labels.push(label);
}
   </script>
</head>
<body>
<video height="360" width="480">
<source src="file:::///C:/media/video/WMV_720P_Amazon.wmv" />
<source src="dizzy.ogv" />
</video>
<p>
<input type="button" id="play" value="play">
<span id="position">00:00</span> / <span id="duration"></span>
</p>
<canvas id="cc"></canvas>
<table>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
</table>
   <div id="canvas-container" width=100 height=100>
   </div>
  
<table>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
<tr>
<td>
rfgtyhuyughghb
</td>
</tr>
</table>
<video autoplay="true" controls="true" src="http://videos.mozilla.org/firefox/3.5/meet/meet.ogv" width="640" height="360">您的浏览器不支持 video 标签。</video>
   <script type="text/javascript">

var textshow = 'umNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNumNum';
     var controller = new TextCanvas(document.getElementById('canvas-container'));
     controller.setDimensions(400, 300);
     var ctx = controller.getContext('2d');
     var midx = 300/2, midy = 100/2;
     var tttt = 0,aaa=0;
     function redraw(ctx, t) {
/*for (i=0;i<4;i++){
  for(j=0;j<3;j++){
    ctx.beginPath();
    var x              = 25+j*50;               // x coordinate
    var y              = 25+i*50;               // y coordinate
    var radius         = 20;                    // Arc radius
    var startAngle     = 0;                     // Starting point on circle
    var endAngle       = Math.PI+(Math.PI*j)/2; // End point on circle
    var anticlockwise  = i%2==0 ? false : true; // clockwise or anticlockwise

    ctx.arc(x,y,radius,startAngle,endAngle, anticlockwise);

    if (i>1){
      ctx.fill();
    } else {
      ctx.stroke();
    }
  }
}

quadraticCurveTo(cp1x, cp1y, x, y) // BROKEN in Firefox 1.5 (see work around below)
bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y)


// Quadratric curves example
ctx.beginPath();
ctx.moveTo(75,25);
ctx.quadraticCurveTo(25,25,25,62.5);
ctx.quadraticCurveTo(25,100,50,100);
ctx.quadraticCurveTo(50,120,30,125);
ctx.quadraticCurveTo(60,120,65,100);
ctx.quadraticCurveTo(125,100,125,62.5);
ctx.quadraticCurveTo(125,25,75,25);
ctx.stroke();
*/
// Bezier curves example
ctx.beginPath();
ctx.moveTo(75,40);
ctx.bezierCurveTo(75,37,70,25,50,25);
ctx.bezierCurveTo(20,25,20,62.5,20,62.5);
ctx.bezierCurveTo(20,80,40,102,75,120);
ctx.bezierCurveTo(110,102,130,80,130,62.5);
ctx.bezierCurveTo(130,62.5,130,25,100,25);
ctx.bezierCurveTo(85,25,75,37,75,40);
ctx.fill();

   tttt++;
   aaa++;
   tttt = ( (tttt % (textshow.length * 10 )));

       var u = 2*t;
       var v = 3*t;
       var p0 = {x: midx + midx*Math.cos(u), y: midy + midy*Math.sin(u)};
       var p1 = {x: midx + midx*Math.cos(v), y: midy + midy*Math.sin(v)};
       ctx.clear();
       ctx.moveTo(p0.x, p0.y);
       ctx.lineTo(p1.x, p1.y);
     /*  ctx.moveTo(p0.x, p0.y);
       ctx.lineTo(p0.x + 8, p1.y % p0.y +;
       ctx.moveTo(p0.x, p0.y);
       ctx.lineTo(p1.x % p0.x - 8, p1.y % p0.y +;*/
       ctx.stroke();
       ctx.stringStyle.color = 'red';
       ctx.stringStyle.fontSize = 12;
       ctx.drawString(p0.x, p0.y, 'A');
       ctx.stringStyle.color = 'blue';
       ctx.stringStyle.fontSize = 18;
       ctx.drawString(p1.x, p1.y, 'B');
       ctx.stringStyle.color = 'green';
       ctx.stringStyle.fontSize = 60;
   ctx.drawString(800 - tttt ,100, u+'a'+textshow.length+'--'+textshow +tttt);
       ctx.stringStyle.color = '#a33aac';
       ctx.stringStyle.fontSize = 50;
   ctx.drawString(p1.x +aaa % 800, p1.y+aaa % 800-300,'abcdefg');
       ctx.stringStyle.color = '#aacabc';
       ctx.stringStyle.fontSize = 50;
   ctx.drawString(800-(p1.x +aaa % 800), p1.y+aaa % 800-300,'2134654');
     }
    
     // don't mistake me for a real animation system!
     var animation = {timer: null, value: 0, duration: 5 * 1000};
    
     function stepAnimation() {
       var t = (new Date().getTime() - animation.startTime) / animation.duration;
       animation.value = t %= 1.0;
       redraw(ctx, t * 2* Math.PI);
     }
    
     function startAnimation() {
       var framerate = 30;
       animation.startTime = new Date().getTime() - animation.value * animation.duration;
       animation.timer = animation.timer || setInterval(stepAnimation, 1000/framerate);
     }

     startAnimation();
   </script>
  
</body>
</html>






  • 大小: 25.3 KB
  • 大小: 25.3 KB
分享到:
评论

相关推荐

    html5 canvas 演示demo 代码

    这个"html5 canvas 演示demo 代码"压缩包很可能是包含了一系列的示例,展示了如何利用Canvas API来创建各种动态效果和交互式图形。 Canvas的基本使用涉及到以下几个核心知识点: 1. **Canvas元素**:HTML5中新增的...

    CanvasDemo.zip

    压缩包内包含的子文件名为"CanvasDemo",这通常暗示着我们可能会涉及到HTML5的Canvas元素。 HTML5的Canvas是一个基于矢量图形的画布,允许通过JavaScript来绘制图形。它是一个二维绘图表面,开发者可以利用它进行...

    小程序canvasDemo

    微信小程序的canvas API与HTML5 canvas API相似,提供了`drawImage`、`fillText`、`strokeRect`等方法来绘制图形和文本。例如,`drawImage`用于绘制图片,`fillText`用于在画布上写入文本,`strokeRect`则可以画出...

    html5_canvas_demo

    HTML5 Canvas是Web开发中的一个强大工具,它允许开发者在网页上进行动态图像绘制,创造出丰富的交互式图形和动画...通过研究这个示例,初学者可以更好地理解和掌握HTML5 Canvas的使用方法,从而开启Web图形编程的大门。

    html2canvas生成图片demo.zip

    在描述中提到,这个demo解决了一些在开发过程中遇到的bug,这意味着它可能包含了一些常见问题的解决方案,例如处理CSS3的阴影、渐变、透明度、绝对定位等,这些都是html2canvas在实际应用中常见的挑战。 首先,我们...

    H5_canvasDemo合集

    HTML5的Canvas元素是网页开发中的一个强大工具,它允许开发者在网页上绘制图形,创建动态视觉效果。这个“H5_canvasDemo合集”显然是一系列...所以,这个“H5_canvasDemo合集”是一个极好的学习资源,值得深入研究。

    canvas demo

    【canvas demo】是一个关于HTML5 canvas元素的演示项目,它主要展示了如何利用canvas技术来处理和操作图像。canvas是HTML5中的一个核心特性,提供了一种在网页上动态绘制图形的方法,无需依赖任何插件。这个demo可能...

    3D Chart Html5 Canvas demo

    在Html5 Canvas中,我们可以使用透视为主要方式,因为它能更好地模拟真实世界的视觉效果。 3. **WebGL**:虽然Canvas本身并不直接支持3D图形,但WebGL是一个基于OpenGL ES 2.0规范的JavaScript API,可以直接在...

    html2Canvas截图加demo

    在"html2Canvas-demo-master"压缩包中的示例代码可以帮助你更好地理解如何配置和调用html2Canvas,以及如何处理可能出现的问题。通过研究这些示例,你可以掌握如何在自己的项目中实现类似的功能,比如创建网页分享...

    一个基于 html5 canvas 的流程图demo..zip

    这个"一个基于html5 canvas的流程图demo.zip"文件很可能包含了一个使用HTML5 Canvas技术实现的流程图示例项目。下面将详细探讨HTML5 Canvas以及其在多媒体和游戏开发中的应用。 HTML5 Canvas是一个基于矢量图形的...

    HTML5 Canvas核心技术源码技术代码

    HTML5 Canvas核心技术源码技术代码、图形、动画与游戏开发。 Canvas开发、入门学习Canvas技术代码。 HTML5 Canvas核心技术源码技术代码、图形、动画与游戏开发。 Canvas开发、入门学习Canvas技术代码。 HTML5 Canvas...

    基于html2canvas将当前页面保存为图片Demo

    在"基于html2canvas将当前页面保存为图片Demo"的项目中,你将找到html2canvas的插件脚本和一个简单的示例Demo。这个Demo可以帮助开发者快速理解和使用html2canvas。下面我们将详细讨论这个知识点: 1. **...

    HTML5 Canvas爱心表白动画特效DEMO演示.html

    HTML5 Canvas爱心表白动画特效DEMO演示.html

    html5 canvas飘洒的星星特效

    html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的星星特效html5 canvas飘洒的...

    超炫酷HTML5 Canvas 3D旋转地球动画DEMO演示

    1、html5 2、地球旋转 3、canvas

    HTML 5 Canvas基础教程 源码+PDF

    《HTML 5 Canvas基础教程》从HTML5和JavaScript(以及jQuery)的基础知识讲起,全面介绍了HTML5Canvas的各种特性,包括渲染上下文、坐标系统、绘制图形、保存和恢复画布状态,以及变形、合成、处理图像和视频等,让...

    html5 canvas模仿flash的简单动画banner Demo

    这个“html5 canvas模仿flash的简单动画banner Demo”就是利用Canvas API来实现类似Flash的动态广告效果的一个实例。下面将详细探讨相关的知识点。 1. HTML5 Canvas API: - `canvas`元素:HTML5中的`&lt;canvas&gt;`...

    html canvas demo

    这个“html canvas demo”是一个基于HTML5 Canvas技术的小应用,旨在展示其功能和用法。 Canvas API提供了丰富的绘图方法,如`fillRect()`用于画矩形,`strokeRect()`画出矩形边框,`beginPath()`开始一个新的路径...

    CanvasDemo

    总之,`CanvasDemo`是一个很好的学习资源,它涵盖了Android 2D图形绘制的基础和进阶技巧,对理解Android图形系统和自定义视图的开发至关重要。通过实践这个示例,开发者能更好地掌握如何利用Canvas为应用增添丰富的...

    canvas案例demo

    在本压缩包“canvas案例demo”中,包含了一系列关于HTML5 Canvas API的实践示例,这些示例展示了如何使用Canvas进行图形绘制、图像处理等操作。Canvas作为一个强大的Web图形渲染工具,它允许开发者通过JavaScript来...

Global site tag (gtag.js) - Google Analytics