Usage of cubic-bezier() CSS function


To define a Cubic Bezier curve, use the cubic-bezier() function. You can try to run the following code to implement the cubic-bezier() function

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 100px;
            height: 100px;
            background: yellow;
            transition: width 3s;
            transition-timing-function: cubic-bezier(0.3, 0.3, 2.0, 0.9);
         }
         div:hover {
            width:200px;
         }
      </style>
   </head>
   <body>
      <p>Hover over the below container:</p>
      <div></div>
   </body>
</html>

Updated on: 25-Jun-2020

132 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements