Home Web Front-end JS Tutorial Using tween.js to implement easing tweening animation algorithm

Using tween.js to implement easing tweening animation algorithm

Jun 05, 2018 pm 06:03 PM

This article mainly introduces the tween.js easing tween animation example. Now I share it with you and give it as a reference.

1. Understand tween.js

If you understand the above, you can skip the following part. The following is an introduction to Tween .js explanation The following will introduce how to use this Tween. First, the three parameters b, c, and d (i.e. initial value, change amount, duration) need to be determined before easing starts. First, introduce a concept of tweening animation. Flash uses the Tween class when doing animations. It can be used to create many animation effects, such as easing, spring, etc. tween.js can be interpreted as tweening animation in Flash. So the question is, what is tweening animation?

I believe everyone who has studied Flash knows that tweening animation is the main and very important means of expression in Flash. 1. There are two types of tweening animation: action tweening animation and shape tweening animation, but you don’t need to know so much about it in js. Okay, without further ado, let’s take a look at Baidu Encyclopedia’s information about tweening animation. Definition: Tween animation: When doing flash animation, "tweening animation" needs to be done between two key frames to realize the movement of the picture; after inserting the tweening animation, the interpolation frame between the two key frames is automatically generated by the computer.

obtained by calculation. So what are key frames? For example: Let’s do some science first. The movies and animations we usually watch are all 24 frames, and 24 frames are one second. The human eye can capture Within the range. You can imagine that there are 22 points between the two points, forming a straight line or curve. Each point represents a frame, and a frame is the smallest unit of a single image in animation, and a single image It can be regarded as an object (everything is an object, except value types). And this line represents the movement trajectory of the object.

Two and four parameters

  1. t: current time-->Represents the first point, which is the first frame, which is where an animation starts.

  2. b: beginning value--> represents the initial value, which is the starting amount. When we watch movies or animations, we generally don’t watch the prologue, so skip the beginning and select the first part. You want to start looking at the position between the first frame and the last frame, and this position is the initial value.

  3. c: change in value-->Represents the change in the last frame minus the initial value,

  4. d: duration -->Represents the last frame, the end of 1s, and the end of the animation.

Usage of tween.js 1. Download 2. Import 3. Use tween.js syntax

Tween. Easing function name. Easing effect name (t, b,c,d);

Note: When the number of starting steps is increased to be equal to the number of ending steps, the entire movement ends. Note: The movement will only end when t is increased to be equal to d; if If you don’t wait, the movement will not stop.

3. tween file code

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

/*

 * Tween.js

 * t: current time(当前时间);

 * b: beginning value(初始值);

 * c: change in value(变化量);

 * d: duration(持续时间)。

*/

var Tween = {

  Linear: function(t, b, c, d) { //匀速

    return c * t / d + b;

  },

  Quad: { //二次方缓动效果

    easeIn: function(t, b, c, d) {

      return c * (t /= d) * t + b;

    },

    easeOut: function(t, b, c, d) {

      return -c *(t /= d)*(t-2) + b;

    },

    easeInOut: function(t, b, c, d) {

      if ((t /= d / 2) < 1) return c / 2 * t * t + b;

      return -c / 2 * ((--t) * (t-2) - 1) + b;

    }

  },

  Cubic: { //三次方缓动效果

    easeIn: function(t, b, c, d) {

      return c * (t /= d) * t * t + b;

    },

    easeOut: function(t, b, c, d) {

      return c * ((t = t/d - 1) * t * t + 1) + b;

    },

    easeInOut: function(t, b, c, d) {

      if ((t /= d / 2) < 1) return c / 2 * t * t*t + b;

      return c / 2*((t -= 2) * t * t + 2) + b;

    }

  },

  Quart: { //四次方缓动效果

    easeIn: function(t, b, c, d) {

      return c * (t /= d) * t * t*t + b;

    },

    easeOut: function(t, b, c, d) {

      return -c * ((t = t/d - 1) * t * t*t - 1) + b;

    },

    easeInOut: function(t, b, c, d) {

      if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;

      return -c / 2 * ((t -= 2) * t * t*t - 2) + b;

    }

  },

  Quint: { //五次方缓动效果

    easeIn: function(t, b, c, d) {

      return c * (t /= d) * t * t * t * t + b;

    },

    easeOut: function(t, b, c, d) {

      return c * ((t = t/d - 1) * t * t * t * t + 1) + b;

    },

    easeInOut: function(t, b, c, d) {

      if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;

      return c / 2*((t -= 2) * t * t * t * t + 2) + b;

    }

  },

  Sine: { //正弦缓动效果

    easeIn: function(t, b, c, d) {

      return -c * Math.cos(t/d * (Math.PI/2)) + c + b;

    },

    easeOut: function(t, b, c, d) {

      return c * Math.sin(t/d * (Math.PI/2)) + b;

    },

    easeInOut: function(t, b, c, d) {

      return -c / 2 * (Math.cos(Math.PI * t/d) - 1) + b;

    }

  },

  Expo: { //指数缓动效果

    easeIn: function(t, b, c, d) {

      return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;

    },

    easeOut: function(t, b, c, d) {

      return (t==d) ? b + c : c * (-Math.pow(2, -10 * t/d) + 1) + b;

    },

    easeInOut: function(t, b, c, d) {

      if (t==0) return b;

      if (t==d) return b+c;

      if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;

      return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b;

    }

  },

  Circ: { //圆形缓动函数

    easeIn: function(t, b, c, d) {

      return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b;

    },

    easeOut: function(t, b, c, d) {

      return c * Math.sqrt(1 - (t = t/d - 1) * t) + b;

    },

    easeInOut: function(t, b, c, d) {

      if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;

      return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b;

    }

  },

  Elastic: { //指数衰减正弦曲线缓动函数

    easeIn: function(t, b, c, d, a, p) { //加速

      var s;

      if (t==0) return b;

      if ((t /= d) == 1) return b + c;

      if (typeof p == "undefined") p = d * .3;

      if (!a || a < Math.abs(c)) {

        s = p / 4;

        a = c;

      } else {

        s = p / (2 * Math.PI) * Math.asin(c / a);

      }

      return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;

    },

    easeOut: function(t, b, c, d, a, p) { //减速

      var s;

      if (t==0) return b;

      if ((t /= d) == 1) return b + c;

      if (typeof p == "undefined") p = d * .3;

      if (!a || a < Math.abs(c)) {

        a = c;

        s = p / 4;

      } else {

        s = p/(2*Math.PI) * Math.asin(c/a);

      }

      return (a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b);

    },

    easeInOut: function(t, b, c, d, a, p) { //先加速后减速

      var s;

      if (t==0) return b;

      if ((t /= d / 2) == 2) return b+c;

      if (typeof p == "undefined") p = d * (.3 * 1.5);

      if (!a || a < Math.abs(c)) {

        a = c;

        s = p / 4;

      } else {

        s = p / (2 *Math.PI) * Math.asin(c / a);

      }

      if (t < 1) return -.5 * (a * Math.pow(2, 10* (t -=1 )) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;

      return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p ) * .5 + c + b;

    }

  },

  Back: { //超过范围的三次方的缓动函数

    easeIn: function(t, b, c, d, s) {

      if (typeof s == "undefined") s = 1.70158;

      return c * (t /= d) * t * ((s + 1) * t - s) + b;

    },

    easeOut: function(t, b, c, d, s) {

      if (typeof s == "undefined") s = 1.70158;

      return c * ((t = t/d - 1) * t * ((s + 1) * t + s) + 1) + b;

    },

    easeInOut: function(t, b, c, d, s) {

      if (typeof s == "undefined") s = 1.70158;

      if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;

      return c / 2*((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;

    }

  },

  Bounce: { //指数衰减的反弹曲线缓动函数

    easeIn: function(t, b, c, d) {

      return c - Tween.Bounce.easeOut(d-t, 0, c, d) + b;

    },

    easeOut: function(t, b, c, d) {

      if ((t /= d) < (1 / 2.75)) {

        return c * (7.5625 * t * t) + b;

      } else if (t < (2 / 2.75)) {

        return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;

      } else if (t < (2.5 / 2.75)) {

        return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;

      } else {

        return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;

      }

    },

    easeInOut: function(t, b, c, d) {

      if (t < d / 2) {

        return Tween.Bounce.easeIn(t * 2, 0, c, d) * .5 + b;

      } else {

        return Tween.Bounce.easeOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;

      }

    }

  }

}

Math.tween = Tween;

Copy after login

4. Give a chestnut

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

<!DOCTYPE html>

<html>

 

  <head>

    <meta charset="UTF-8">

    <title></title>

    <script src="https://cdn.jsdelivr.net/npm/vue"></script>

    <script src="Tween/tween.js"></script>

    <style>

      *{margin: 0;padding: 0;}

      .out{width: 800px;height: 500px;background: #e5e5e5;position: relative;padding: 20px;text-align: center;}

      .inner{width: 50px;height: 50px;border-radius: 50%;background: #FF0000; position: absolute;left: 50px;top: 50px;}

    </style>

  </head>

 

  <body>

    <p id="app" class="out">

      <p class="inner" id="ball"></p>

      <button id="start" @click="start()">start</button>

    </p>

  </body>

  <script type="text/javascript">

    var app = new Vue({

      el: &#39;#app&#39;,

      data: {

        t: 0,

        b: 50,

        c: 500,

        d: 1500,

      },

      methods:{

        start(){

          var t = this.t;

          const b = this.b;

          const c = this.c;

          const d = this.d;

          const setInt = setInterval(()=>{

            t++;

            console.log(t)

            if(t==300){clearInterval(setInt)}

            console.log(t);

            const ballLeft = Tween.Linear(t,b,c,d)+"px";

            ball.style.left = ballLeft;

          },20)

        }

      }

    })

  </script>

</html>

Copy after login

5. Personal experience

The advantage of tween is that the effect of tween is based on an algorithm, not a certain language Grammar can be used in a wide range of places, and you will benefit from it once you learn it.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Set global variables or data methods according to vue (detailed tutorial)

Use jquery to click the Enter key to achieve Login effect (detailed tutorial)

How to get the text information of the current element from vue.js

The above is the detailed content of Using tween.js to implement easing tweening animation algorithm. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1657
14
PHP Tutorial
1257
29
C# Tutorial
1231
24
Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

The Evolution of JavaScript: Current Trends and Future Prospects The Evolution of JavaScript: Current Trends and Future Prospects Apr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript Engines: Comparing Implementations JavaScript Engines: Comparing Implementations Apr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

JavaScript: Exploring the Versatility of a Web Language JavaScript: Exploring the Versatility of a Web Language Apr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

Python vs. JavaScript: The Learning Curve and Ease of Use Python vs. JavaScript: The Learning Curve and Ease of Use Apr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration) How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration) Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

From C/C   to JavaScript: How It All Works From C/C to JavaScript: How It All Works Apr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration) Building a Multi-Tenant SaaS Application with Next.js (Backend Integration) Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

See all articles