Heim > Artikel > Web-Frontend > tween.js in js realisiert den Effekt einer langsamen Animationsbewegung (Beispielcode)
Der Inhalt dieses Artikels befasst sich mit dem langsamen Bewegungseffekt von tween.js in js (Beispielcode). Ich hoffe, dass er für Sie hilfreich ist . .
window.requestAnimFrame = (function (callback,time) { return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimaitonFrame || function (callback) { window.setTimeout(callback, time); }; })();
/* * t: current time(当前时间,小于持续时间,tween返回当前时间目标的状态); * b: beginning value(初始值); * c: change in value(变化量); * d: duration(持续时间)。 */
Linear : Linearer, gleichmäßiger Bewegungseffekt;
Quadratisch: quadratische Lockerung (t^2);
Kubisch: kubische Lockerung (t^2) t ^3);
Quartic: Lockerung zur vierten Potenz (t^4);
Quintic: Lockerung zur fünften Potenz Moving ( t^5);
Sinusoidal: Beschleunigung der Sinuskurve (sin(t));
Exponential: Exponentialkurve Ease (2^ t);
Kreisförmig: Erleichterung der Kreiskurve (sqrt(1-t^2));
Elastisch: Sinusförmige Entspannung mit Exponentialfunktion Zerfall;
Zurück: Kubische Entspannung über den Bereich hinaus ((s+1)t^3 – st ^2); 🎜>
Sprung: Nachlassender Sprung mit exponentiellem Abfall.var t = 0, b = 0, c = 100, d = 10; var step = function () { // value就是当前的位置值 // 例如我们可以设置DOM.style.left = value + 'px'实现定位 var value = Tween.Linear(t, b, c, d); t++; if (t
backTop(){ var Tween = { Linear: function(t, b, c, d) { //匀速运动 return c * t / d + b; } } Math.tween = Tween; var t = 0; const b = document.documentElement.scrollTop; const c = 100; const d = 5; const setInt = setInterval(()=>{ t--; //console.log(t) if(document.documentElement.scrollTop == 0){clearInterval(setInt)} //console.log(t); const backTop = Tween.Linear(t,b,c,d); //console.log(backTop); document.documentElement.scrollTop = backTop; },5) },
Learning Fun Park, hintenLinksTweenjs
npm install @tweenjs/tween.js
var box = document.createElement('p'); box.style.setProperty('background-color', '#008800'); box.style.setProperty('width', '100px'); box.style.setProperty('height', '100px'); document.body.appendChild(box); // 动画循环 function animate(time) { requestAnimationFrame(animate); TWEEN.update(time); } requestAnimationFrame(animate); var coords = { x: 0, y: 0 }; // 开始位置 var tween = new TWEEN.Tween(coords) // 创建一个更改目标的tween .to({ x: 300, y: 200 }, 1000) // 目的位置,1s .easing(TWEEN.Easing.Quadratic.Out) // 平滑动画 .onUpdate(function() { // 目标更新后调用 // CSS translation box.style.setProperty('transform', 'translate(' + coords.x + 'px, ' + coords.y + 'px)'); }) .start();
So verwenden Sie tween.js zum Implementieren der Navigationsleiste slide_html/css_WEB-ITnose
Eine einfache Animationsbibliothek, die kapselt Tween .js-Beispiel-Tutorial
Detaillierte Einführung in die Tween.js-Animation
Das obige ist der detaillierte Inhalt vontween.js in js realisiert den Effekt einer langsamen Animationsbewegung (Beispielcode). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!