क्यूबिक बेज़ियर कर्व को परिभाषित करने के लिए, क्यूबिक-बेज़ियर () फ़ंक्शन का उपयोग करें। आप क्यूबिक-बेज़ियर () फ़ंक्शन को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!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>