Circle Transition After Effects



Give your footage a fun, clean look with these 16 free transitions for After Effects. Circle Transitions. Give your footage a bold burst of life and motion with this collection of sixteen FREE circle transitions. Free Circular Transitions. A clean and simple After Effects Transitions project for personal use. Sep 22, 2017 PremiumBeat released 16 FREE Circle Transitions you can use in Adobe After Effects to produce clean circular transitions between video clips. Download the circle transitions below and follow my video tutorial. I'll also include details on how to bring your finished transition composition into Premiere Pro.

I'm sorry if this is hard to understand I was rushing if you have any questions ask in the comments!!! I will try to be a lot more active here. Download Transition Circle After Effects projects. 183 stock AE templates starting at $5. Immediate downloading, easy to use. Looking to spice up your transition game?Danny goes over one of his favorite transitions and walks you step by step how to do it. Pop open After Effects.

As web developers, we need a good foundation to create animations that are both performant and maintainable, which is paramount to the native web app landscape. In this article find out how to go from After Effects to CSS transitions, animations and keyframes.

Websites are looking more and more like mobile apps. Users are also increasingly expecting a more app-like experience. From push notifications to offline mode, native web apps are getting there.

Once web apps function like native apps, the design interactions would also change to address the use case — namely, the ubiquity of animations. Animations drive interactions in all of our favourite apps, from Uber to Lyft and Snapchat to Instagram.

Practical Techniques On Designing Animation

What happens when a button has been activated? Does the user have to wait, not knowing if the form worked? A button with a loader could keep the viewer engaged while data is loaded in the background. Read a related article →

As web developers, we need a good foundation to create animations that are both performant and maintainable, which is paramount to the native web app landscape. We need to be able to go from After Effects to CSS transitions, animations and keyframes.

What Is After Effects?

After Effects is an industry-standard product from Adobe used by graphic and motion designers to key, compose and track animations. It is the de facto tool used by many designers to communicate ideas to a team by exporting the animation layers into an easy-to-visualize sample video, with a reference table of the animation start and end times to accompany it.

Together, the demo video and the reference table give the development team a good baseline for how to implement the animation. The video is used to see the overall picture, while the reference table provides the minute details that make or break the animation interaction.

Things We Can Do With After Effects

What we can create with After Effects is limited only by our imagination. It can provide an endless number of post-production effects for an image or video. In the scope of the web, it provides a platform for ideas to be shared.

Consider the red ball above. The ball is animated using After Effects to slowly roll to the middle, pause for a second, and then slowly accelerate to exit the viewport. The classic web animations of movement, scaling, rotation and even color change are easily done in After Effects and serve as an instantly generated requirements document (or video or GIF) for the animations to be implemented.

Tools You Need To Get Started

With JavaScript, HTML5, CSS3 and many other languages becoming standard across most major user agents that a website receives traffic from, using these tools wholesale is becoming increasingly feasible. Below are some key technologies to keep in mind when implementing animations.

CSS Transitions

CSS transitions provide a way to control how fast a change in CSS property is applied to an element. Instead of applying a style immediately (without transitions), it could be applied gradually over a defined acceleration curve using customization rules. An example would be changing a background color from black to white over a period of time.

With this rule on the element, the background color would take three seconds to change, gradually changing from black to white, going through shades of gray. This can further be customized by adding transition-timing-function, to calculate intermediate values, and transition-delay, to delay the start of the animation.

CSS transitions are good for simple interactions, such as changing the background color or moving an element to a new location.

Using CSS Animations

CSS animations provide even finer control over the intermediate steps between an animation, using waypoints. Waypoints (or keyframes) are pinned points in time, during the animation, when we apply certain styles to an element. We then use the defined keyframes to lay out what the animation should look like.

Suppose we want an element to animate as a bounce. The element needs to move up, move back to the original position, move back up a little, and then move back to the original position. Using keyframes, we can break down that elastic effect into percentages of time that the animation will take.

As with CSS transitions, there are plenty of options for developers to configure. We can make animations repeat indefinitely using animation-iteration-count, with the value infinite, or even control the direction in which the animation flows, using the property animation-direction. Plenty of CSS animation properties give us fine-grained control to match an animation to the design.

CSS animations are useful for short repeating animations, such as expansion, rotation and bounces.

Using JavaScript

JavaScript has a multitude of uses, from Raspberry Pi servers to client-side code, but one of its core uses remains changing class names on elements. Changing a class name is a trivial yet effective way to manage the state of an element.

Circle Transition After Effects

An example is the simple addition of an active class that signals an initially hidden component to start animating. Consider the ball below. We use JavaScript to add a class that triggers the animation using CSS transition properties.

The first part of this animation can be replicated using a simple combination of HTML, CSS and JavaScript.

HTML:

CSS:

JavaScript:

Transition After Effects

When the timeout (of 500ms) expires, a class of active is added to the ball div, which changes the transform property, which then triggers the transition property, which is watching the transform property on the ball element. Changing CSS classes using JavaScript not only helps us to manage the state of a component, but also gives us further control over animations beyond CSS animations and transitions.

Controlling animations using JavaScript is beneficial for managing state, to trigger events based on dynamic factors such as user input or application state.

From Idea To After Effects To CSS And JavaScript

Imagine we had a task in which we had to animate an element on the page. Let’s make this element a red ball. The ball would have to rotate around the page, as well as scale up and down.

After Effects allows us to create mockups of what the interaction would look like when the animation is triggered. The ball in motion below is an example of that. Notice how the red ball first slightly scales up, then begins accelerating around a circular loop and decelerates back into its original position. Only then does the ball scale down to its original size.

Consider the shift in scale above where the ball grows or shrinks before moving or stopping. This is a tiny feature that the designer has crafted in After Effects and needs to be communicated to the developer clearly so that the minute details are not missed.

That is why some preparation would need to be done before going from After Effects to the developer. We couldn’t simply create a video file of the animation in action, share it with the developer and call it a day.

One way to convey our ideas clearly is to create a spreadsheet detailing the steps needed for the animation. Depending on the complexity of the animation, it could be simple scribbles on a ticket, a text file containing a list or a full-blown spreadsheet.

StepAnimationTimeDetails
1Ball scales up1 secondScale 1.25 with shadow
2Ball moves in a circle2 secondsScale 1.25 with a radius of 25 pixels
3Ball scales down1 secondScale back to 1

Another way to convey information about the animation is to embed it in the video itself. You can do this right in After Effects, adding crucial information such as how much to scale, the number of steps and other information as it is happening, to give context to the implementer. This enables us to use the demo video as a universal source of truth.

This exported video file from After Effects acts as a form of a contract between designer and developer. With a common understanding in place, we can use the tools discussed to implement it — namely, CSS classes, JavaScript events, CSS transitions, CSS animations and JavaScript animations.

1. Break Down The Animation

Look for patterns and note the timings.

The first thing to do is draw the timeline of the animations for each of the elements (or group of elements). We need to understand where animations intersect in order to synchronize the timing and animation lifecycle around them. Planning is key to a complex animation, so that we can incrementally build our solution in a maintainable way for future requirements.

From the information above, we break it down as the following steps:

  1. Initialize the component and wait for a trigger.
  2. Once triggered, scale up in size and expand the drop shadow.
  3. After that, move around in a circle with ease-in-out.
  4. Then, scale down in size and decrease the drop shadow.

The benefit of outlining is that we understand which components must live outside of the animating elements — for example, the drop shadow must be independent of the ball. Similar to outlining an essay, breaking down the animation organizes our thoughts on the work we have to do. Outlines demonstrate the thinking process behind an animation and doubly serves as documentation for our work.

2. Negotiate With Stakeholders

Can we simplify some areas? Which parts of the animation are a must? Can we synchronize timings?

Once we have investigated the work needed to accomplish the task, we bargain. Bargaining with the designer and the product owner is every developer’s responsibility. The implementer has a complete understanding of the key low-hanging fruit, what can be done and what is not practical to do.

Animation is tricky because removing seemingly minute details from an animation could change the user experience. To give a development-based example, changing how an animation behaves is akin to changing the response payload we might receive from an API call: Certain things could be changed, but some parts must be there.

This is a case-by-case situation, based on our relationship with the designer, as well as with the product owner given the timeline for launching. Asking for certain animations to be removed is not recommended because this would be beyond our area of expertise.

A good approach to bargaining would be to synchronize timings or to simplify animations that the browser might not be capable of doing natively, and avoiding animations that use JavaScript because they would be hard to maintain and could result in janky performance. We can and should ask for these concessions instead.

3. Plan The Attack

Know what the start and end state of each element should be. Look at where each transition timing is supposed to happen. Leverage BEM in CSS classes to apply animations clearly. Understand the reasons why JavaScript should be limited in favor of CSS.

Let’s examine the animation described earlier. Five states jump out at us:

  1. the initial state, with the red ball and some drop shadow;
  2. the scaled-up version of the ball with a longer drop shadow;
  3. the movement of the ball around a circle;
  4. scaling down of the ball, along with its drop shadow;
  5. the return to the initial state, waiting to be triggered.

For all five states, we should look at what the style is before and what it should be after. This will provide us with information on what kind of animation tools we would need in order to implement it.

To do this, we start with the base case style. This could be nothing, if the element appears out of nowhere, or it could be the previous style, in the case of chained animations.

StateClass namesDurationAnimation timing
1ball(n/a, waiting for trigger)n/a
2ball, ball--scale-up1 secondease-out
3ball, ball--scale-up, ball--circling2 secondease-in-out
4ball, ball-scale-up, ball--circling, ball--scale-down1 secondease-in
5ball(n/a, waiting for trigger)n/a

Keep it simple by having very few changes in styles between states. Once we have identified the start and end states, we need to label them as CSS classes, so that they can be applied to the element easily. This gives us the flexibility to use JavaScript to handle the application of classes based on data received from AJAX calls that the element might depend on.

BEM CSS is ideal for our naming strategy because of how we would represent the states of our animations in progress with modifiers. If the animation is generic enough, BEM is also a good methodology to maintain DRY (“don’t repeat yourself”) CSS classes that work across code bases. We’d start off with just the block and element markers and then layer in modifiers as we progress through the animation.

Here is a sample template class journey:

We start off with the container element with the class ball, which would represent the red ball we are animating. As the animation iterates across the experience, so too do our BEM class names, from scaling up to moving in a circle. This is a method to keep track of what the element is supposed to look like when the styles are applied.

4. Steady Implementation

With an outline on hand and tools ready to use, we should chip away at the project state by state.

We can iteratively tackle each state as a separate item, building upon the previous state as needed. With each state clearly defined, we can focus more on making our code DRY and easy to read, rather than on details of implementation. And, of course, it would be nice to add tests to cover our logic.

Initial State

We start with a simple red ball, with a slight drop shadow.

Scaling Up

There are two parts to scaling up: the size of the element and its drop shadow. We use a keyframe, named scale, that is shared by both the scaling up and down for DRY-ness to handle this animation.

Circling (After Scaling-Up Animation Is Applied)

We use a keyframe, named circular, as well as move its transform-origin property to move the element around in a circle, starting from the beginning. Keep in mind that circling only happens when the scaling-up animation has completed.

Scaling Down (After Circling and Scaling-Up Animations Are Applied)

To scale down, we reuse the keyframe scale, with animation-direction: reverse to do the opposite of what the scale-up class does. This brings us back to our original state.

Working Demo

If we combine all of these classes into a sequence, we would have a CSS representation of the rendering done in After Effects.

Click on the ball to start.

See the Pen Animating Ball by Chris Ng (@chrisrng) on CodePen.

Conclusion

The tools covered in this article are hardly cutting-edge, but they are generally supported across most major browsers, which makes them usable today.

Previously, implementing animations was hard because it meant using external tools such as jQuery Animate to do simple things such as moving elements around on the page. Today, CSS transitions and animations can be done natively and efficiently, leveraging the GPU.

Animations are always a tug of war between developer, designer and product owner. The trick is to find the middle ground, where all stakeholders are happy with the quality of the product. Hopefully, this guide will help you make that transition.

(rb, yk, al, ra, il)

Here are all the motion graphic elements you’ll ever need for personal projects, advertising jobs, or corporate production.

Now that PremiumBeat’s FREE WEEK has come to a close, let’s look back at the many free After Effects assets they’ve given away. From explosive elements and sound effects to customizable logo reveals and transitions, these assets are here to make your life a whole lot easier and save you some money. Here are some of the best and easiest elements to work with.

15 Explosions and SFX

For the action aficionado, here are 15 explosion elements to throw into your project. These elements are perfect for an action scene or commercial that needs explosive features. Included with the pack are 25 sound effects that pair with the explosions wonderfully. Download the freebie here.

16 4K Volumetric Light and Dust Overlays

If you need to know how to use and apply the overlays, here’s everything you need to know before diving into your next project. These light beams and dust overlays add depth and scope to your project by lending a general cinematic quality to any production. The pack is user-friendly and you can apply it in endless scenarios. Download the pack here.

9 After Effects Poly Titles

Circle transition after effects download

Here are 9 different motion graphics easily customizable for anybody creating original content for branding work, commercial projects, or personal YouTube channels. Download the motion graphics packhere.

5 Camera Overlays

For anybody looking to add some compositing or save time by using a different camera, try out these 5 free camera overlays. Replicating found-footage horror films is made easy. Just throw on the camcorder or DSLR viewfinder overlay, and immerse your audience directly in your story. Download the camera overlay pack here.

16 Circle Transitions

With these 16 circle transitions, take your viewers from one scene to another with a stylish and fun technique. These transitions can also work for your next logo reveal or end screen animation (if you’re working with corporate clients.) The possibilities are endless with this timeless transition pack. Watch the tutorial about applying these transitions to your After Effects workflow here. Download the free pack here.

20 Animated Icons

Here are 20 animated icons perfect for anybody specialized in corporate work. These icons will be your go-to for creating informative, animated presentations that seamlessly fit into your video. This will keep your clients and audience engaged and interested in your work. (The project file is part of the download.)

16 Free Transitions

Like the circle transitions, sometimes your content needs a little spice. If you’re tired of working with the built-in transitions in After Effects or any other NLE, here are 16 unique, FREE transitions. You can customize these transitions with any color scheme you need. Download the transitions here.

20 Color Grading Presets

Anybody with any color grading experience knows that presets are not the final solution for achieving that wondrous cinematic look you’re going for. These are a great starting point for your next project, and they are easy to use, adding depth and range to your image. Download the color grading presets here.

Need more free tools you can use in other projects?

After Effects Transitions Pack

  • Free image resizer from Shutterstock
  • Quick online file converter
  • 100+ color combinations and schemes

What are some freebies you’d like to see in the future? Share in the comments below!

Sign In

Circle Transition After Effects Paper

Register

Circle Zoom Transition After Effects

  • Access to orders in your account history
  • Ability to add projects to a Favorites list
  • Fast checkout with saved credit cards
  • Personalized order invoices

Circle Transition After Effects

Create Account