×
Community Blog The Design Draft Generation Code (imgcook) Can Develop Animation

The Design Draft Generation Code (imgcook) Can Develop Animation

This article discusses the capabilities of imgcook and how imgcook can cover the dynamic effects in most e-commerce scenarios.

By Leimu, from F(x) Team

imgcook is a software as a service product owned by Alibaba. It can generate frontend code for different kinds of visual drafts (Sketch/PSD/static pictures) with one click through intelligent technology. Generally speaking, imgcook is used to make some static modules, but as Taobao design evolves, imgcook has to develop dynamically.

Dynamic Decomposition

For example, atmosphere rolling and dynamic effect switching of Feeds products. I recently developed a dynamic effect in a module:

1

First, break down the animation:

  1. Reduce the original product chart based on the upper left corner and hide the rest of the status one
  2. Wait for one to complete

    1. The May Like gradient shows up.
    2. Slide the recommended products on the right side to the left
  3. Done

It is relatively simple after decomposition. When it was developed through imgcook, it still needed a lot of learning.

Dynamic Effect

Step 1: Split the state and then create a state:

2
3

It is necessary to ensure the two commodity pictures are one node to ensure a smooth transition of the commodity graph. Then, the first stage can be started.

4

Represent different states with state.recommend. Then, change the width and height of the picture through the imgcook state expression. Set the transition effect parameters by setting the dynamic effect attribute. It is simple to hide other components and directly set whether to render or not through imgcook.

The next step is to wait for the completion of stage 1 and display May Like. The difficulty of this part is how to set the delay time. We can complete it by setting the transitionDelay:

5

The representative above indicates that the gradient dynamic effect is executed for 0.3s (and the delay is 0.6s) because we previously set the transition time of stage one to be 0.6s. The next step is to change the transparency of the component. Here, we use the onAppear event of the View component to complete it.

6

Obtain the DOM element (event.target) by adding the event parameter (event parameter) and then configure it in the function:

target.style.opacity = 1;

There is another way of writing:

this.set({ recommendOpacity: 1 });

Since the former is relatively simple, I chose to directly operate DOM elements.

Then, it came to the last animation, which can also be completed through the transition. However, I used keyframes to explain how to use imgcook to develop more complex effects.

Before thinking, we have a problem: how can we add CSS styles directly to imgcook? Keyframes need to be defined in CSS or style tags. In this process, I thought about many black technologies, such as using Rax rax-keyframes-to-animation and dynamically adding style tags to modules.

The schemes are not very good. The first scheme depends on Rax ecology and cannot be copied to other frameworks. Although the second scheme is possible, it is not elegant. In the end, I found Element.prototype.animate, it is a Web experimental function, and keyframes are an equivalent set of Web API. The animate method can be used to keyframe the required configuration settings on each DOM element object. This implements functionality equivalent to keyframes and CSS animation.

First of all, the element on the right is obtained through the onAppear event:

7

Then, use it in the function:

const keyframes = [
  { transform: `translate3d(100%, 0, 0)` }, // from
  { transform: `translate3d(0, 0, 0)` } // to
];
target.animate(keyframes, {
  delay: 600,   // The delay is 600ms.
  duration: 1000, // Set the transition time.   
  easing: 'ease',   // Set the transition function.   
  fill: 'forwards', // Set the style of the last frame when the animation ends. 
}); 

We also need to ensure that the default style of the element is consistent with the first frame of keyframes. We need to set:

8

Then, the whole animation effect is realized, but there is still a Bug left in the current implementation. We use onAppear to touch the effect, so when the element crosses the screen and reappears (for example, Feeds scrolls down and then rolls back), it will touch the effect again. We need to make some improvements to our implementation.

Define an animStarted, the initial state is false or undefined and judge whether animStarted is true in the function. If it is true, it means that the dynamic effect has been executed and then return it directly. Otherwise, animate() is called to start execution. After execution is completed, animStarted is set to true so we can avoid the problem of repeated execution of onAppear.

Summary and Suggestions

Through the description of this article, I believe that imgcook can be used to cover the dynamic effects in most e-commerce scenarios (except games). Simple dynamic effects use the combination of transition and transitionDelay. Slightly complex frame animation can be realized through animate.

However, it is not that perfect for imgcook. Here are two suggestions that can help us develop dynamic effects better:

  1. Support event binding of once, so developers do not have to use an additional state to achieve a single action
  2. Support preview of dynamic effects on the canvas, so you do not need to debug after each code is released

Finally, you are welcome to use imgcook's new function-based development method to write the frontend so we can think of some more interesting things with the saved brain power. Meanwhile, we may write fewer bugs.

0 0 0
Share on

Alibaba F(x) Team

66 posts | 3 followers

You may also like

Comments

Alibaba F(x) Team

66 posts | 3 followers

Related Products