The State of CSS Animation

As front-end designers and developers, we use CSS to style, position and create great looking sites. We often use CSS to add movement to pages in the form of transitions or even animations, but we don’t usually go much beyond that.

Animation can be a powerful tool to help our visitors and customers understand and benefit from our designs. There are principles we can apply to our work to make the most of this power.

Growth

Use of animation on the web are rising, largely because of the transition and @keyframes additions to CSS. There once was a time when animations and CSS didn’t know one another, but that isn’t the case today. Articles, tutorials, premium courses and even motion guidelines are far more accessible now than they once were. Combining @keyframes with the animation property, along with transition has finally given developers the chance to craft motion properly and lend interfaces a personality and life once unconsidered.

Animation Property & Keyframes

Transitions do a great job of building out visual interactions from one state to another, and are perfect for these kinds of single state changes. However, when more control is required, transitions need to have multiple states. In return, this is where animations pick up where transitions leave off.

To set multiple points at which an element should undergo a transition, use the @keyframes rule. The @keyframes rule includes the animation name, any animation breakpoints, and the properties intended to be animated

@keyframes slide {

 0% { 
  left: 0;
  top: 0;
 } 

50% { 
 left: 244px;
 top: 100px;
 }

 100% { 
  left: 488px;
  top: 0;
 }
}

 

Vendor Prefixing the Keyframe Rule
The @keyframes rule must be vendor prefixed, just like all of the other transition and animation properties. The vendor prefixes for the @keyframes rule look like the following:

@-moz-keyframes
@-o-keyframes
@-webkit-keyframes

<div class="stage">
   <figure class="ball">
    <figure class="ball-2">
       <div class="innox-logo-anim xx-small circle-logo whiteFG">
        <div class="innox-logo-anim-plane">
          <div class="partA part">
            <div class="cside s1">
       </div>
        <div class="cside s2">
     </div>
    <div class="cside s5">
  </div>
</div>
  <div class="part">
     <div class="cside s3"></div>
       <div class="cside s4"></div>
        <div class="cside s6"></div>
     </div>
    </div>
   </div></figure>
  </figure>
  <div class="bg-transparent">
 </div>
</div>

Animations Keyframes Demo
Hover over the ball below to see the animation in action.

.stage {
  background-image: url(http://alpha.codalien.com/blog/wp-content/uploads/2017/12/team-pic.jpeg);

  border-radius: 50px 50px 0 0;
  height: 236px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 27%;
  width: 100%;
  margin: auto;
  overflow:hidden;
}
.bg-transparent {
  background: rgba(0, 0, 0, 0.5);
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  z-index:1;
  left:0;
}
.stage:hover .ball {
  animation-name: slide;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: .5s;
  animation-iteration-count: infinite;
}
.stage .ball {
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  padding:5px;
  height: 100px;
  position: absolute;
  width: 100px;
  display: block;
  z-index:2;
  -webkit-animation: slide 5s infinite; /* Safari 4+ */
  -moz-animation:    slide 5s infinite; /* Fx 5+ */
  -o-animation:      slide 5s infinite; /* Opera 12+ */
  animation:        slide 5s infinite; /* IE 10+, Fx 29+ */
  animation-direction: alternate
}
.stage .ball .ball-2{
  background-color: rgba(0, 0, 0, 0.74);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  position: relative;
  z-index: 2;
  box-shadow: inset 0px 0px 0px 18px #5025bf;
}

Posted

in

by

Tags:

Recent Post

  • Generative AI for IT: Integration approaches, use cases, challenges, ROI evaluation and future outlook

    Generative AI is a game-changer in the IT sector, driving significant cost reductions and operational efficiencies. According to a BCG analysis, Generative AI (GenAI) has the potential to deliver up to 10% savings on IT spending—a transformation that is reshaping multiple facets of technology. The impact is especially profound in application development, where nearly 75% […]

  • Generative AI in Manufacturing: Integration approaches, use cases and future outlook

    Generative AI is reshaping manufacturing by providing advanced solutions to longstanding challenges in the industry. With its ability to streamline production, optimize resource allocation, and enhance quality control, GenAI offers manufacturers new levels of operational efficiency and innovation. Unlike traditional automation, which primarily focuses on repetitive tasks, GenAI enables more dynamic and data-driven decision-making processes, […]

  • Generative AI in Healthcare: Integration, use cases, challenges, ROI, and future outlook

    Generative AI (GenAI) is revolutionizing the healthcare industry, enabling enhanced patient care, operational efficiency, and advanced decision-making. From automating administrative workflows to assisting in clinical diagnoses, GenAI is reshaping how healthcare providers, payers, and technology firms deliver services. A Q1 2024 survey of 100 US healthcare leaders revealed that over 70% have already implemented or […]

  • Generative AI in Hospitality: Integration, Use Cases, Challenges, and Future Outlook

    Generative AI is revolutionizing the hospitality industry, redefining guest experiences, and streamlining operations with intelligent automation. According to market research, the generative AI market in the hospitality sector was valued at USD 16.3 billion in 2023 and is projected to skyrocket to USD 439 billion by 2033, reflecting an impressive CAGR of 40.2% from 2024 […]

  • Generative AI for Contract Management: Overview, Use Cases, Implementation Strategies, and Future Trends

    Effective contract management is a cornerstone of business success, ensuring compliance, operational efficiency, and seamless negotiations. Yet, managing complex agreements across departments often proves daunting, particularly for large organizations. The TalkTo Application, a generative AI-powered platform, redefines contract management by automating and optimizing critical processes, enabling businesses to reduce operational friction and improve financial outcomes. […]

  • Generative AI in customer service: Integration approaches, use cases, best practices, and future outlook

    Introduction The rise of generative AI is revolutionizing customer service, heralding a new era of intelligent, responsive, and personalized customer interactions. As businesses strive to meet evolving customer expectations, these advanced technologies are becoming indispensable for creating dynamic and meaningful engagement. But what does this shift mean for the future of customer relationships? Generative AI […]

Click to Copy