//
export default {
data: {
timer: null,
left: 0,
top: 0,
flag: true,
animation: null,
startTime: 0,
},
onShow() {
var test = this.$element("mycanvas");
var ctx = test.getContext("2d");
();
(0, 0);
(300, 300);
= 5;
= "red";
();
},
runframe() {
this.left = 0;
this.top = 0;
= true;
= requestAnimationFrame();
},
step(timestamp) {
if () {
this.left += 5;
this.top += 5;
if ( == 0) {
= timestamp;
}
var elapsed = timestamp - ;
if (elapsed < 500) {
('callback step timestamp: ' + timestamp);
= requestAnimationFrame();
}
} else {
this.left -= 5;
this.top -= 5;
= requestAnimationFrame();
}
if (this.left == 250 || this.left == 0) {
= !
}
},
onDestroy() {
cancelAnimationFrame();
}
}