本文介绍了HTML5 / js - 如何在两个坐标之间设置直线动画?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
简单问题(可能是错误的)
我希望使用HTML5和/或Jquery在直线上的两个点之间进行动画制作。
ctx.beginPath();
ctx.moveTo(0,0); //
ctx.lineTo(100,100); // b
ctx.stroke();
Simple enough question (could be wrong)
im looking to animate between two points in a straight line, using HTML5 and/or Jquery.
ctx.beginPath();
ctx.moveTo(0, 0); // a
ctx.lineTo(100, 100); // b
ctx.stroke();
EDIT : a jquery plugin i'm developing for path animation http://lazylinepainter.info/
解决方案
Thanks valli-R and Zevan,
I've coded an amalgam of your two answers which uses lerp with requestAnimFrame
这篇关于HTML5 / js - 如何在两个坐标之间设置直线动画?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!