I have been putting a lot of effort into researching for a solution, but come up empty.
I am trying to make 10 words of different font-sizes slide in from different directions, on a canvas within my document. I have some code (jsFiddle), but haven't managed to get too far with it, all advice is appreciated.
var can, ctx, step, steps = 0,
delay = 20;
function init() {
can = document.getElementById("MyCanvas1");
ctx = can.getContext("2d");
ctx.fillStyle = "blue";
ctx.font = "20pt Verdana";
ctx.textAlign = "center";
ctx.textBaseline = "middle";
step = 0;
steps = can.height + 50;
RunTextRightToLeft();
}
function RunTextRightToLeft() {
step++;
ctx.clearRect(0, 0, can.width, can.height);
ctx.save();
ctx.translate(can.width / 2, step);
ctx.fillText("Welcome", 0, 0);
ctx.restore();
if (step == steps)
step = 0;
if (step < steps)
var t = setTimeout('RunTextRightToLeft()', delay);
}
canvas {
border: 1px solid #bbb;
}
.subdiv {
width: 320px;
}
.text {
margin: auto;
width: 290px;
}
<body onload="init();">
<div class="subdiv">
<canvas id="MyCanvas1" width="300" height="200">
</canvas>
</div>
</body>
Thank You
Here's one way to animate words into a final sentence:
https://jsfiddle.net/m1erickson/q7tpsnmv/
Define some word objects in an array:
Calculate where each word must end up to make a sentence:
Animate each word from its starting postion [x0,y0] to its ending position [x1,y1]: