Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function spinRound(speed) {
this.rot = 0;
yourClip.onEnterFrame = function() {
this.rot += Math.floor(speed);
if (this.rot>=360) {
this.rot = 360;
delete this.onEnterFrame;
}
this._rotation = this.rot;
};
}
//useage example
spinRound(5);