cubic-bezier() CSS 函数用法


要定义三次贝塞尔曲线,请使用 cubic-bezier() 函数。你可以尝试运行以下代码来实现 cubic-bezier() 函数

示例

在线演示

<!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>

更新日期:2020 年 6 月 25 日

188 人浏览

开拓你的 事业

通过完成课程获得认证

开始学习
广告