首页 > web前端 > css教程 > 正文

使用 CSS 创建边框动画

WBOY
发布: 2023-09-08 08:57:09
转载
1306人浏览过

使用 css 创建边框动画

CSS is used to create beautiful and engaging border animations, which add movement and interest to a web page. To create border animation, we will first need to define a border for the element we want to animate, then we’ll use CSS transitions and animations to add movement to the border.

Border animations can be used to create hover effects on buttons, links, and other interactive elements. They can also be used to create loading animations that show progress while a page or element is loading. We can also use border animations on call-to-action buttons to make them more noticeable.

Approach - 1

we will create a hover effect that animates the border of an element when a user hovers over it.

Algorithm

  • 创建一个HTML文档,并将标题定义为"Hover Effect Border Animation"。

    立即学习前端免费学习笔记(深入)”;

  • 设置文档的主体,使用flexbox来居中盒子,并给它一个背景颜色为#48b6ff 定义一个具有inline-block显示、10px的padding、18px的字体大小、颜色为#333的box类,并且具有2px的透明实线边框,过渡时间为0.5s,过渡效果为ease
  • Add a pulsing animation to the border with an infinite duration and ease-in-out timing. 当鼠标悬停在盒子上时,将边框从红色渐变为绿色再到蓝色,并禁用脉动动画

  • Define the pulsing animation with a keyframe that changes the border color from red to green to blue. 在HTML文档的body中添加一个带有box类的div元素

  • Save and view the HTML file in a web browser to see the hover effect border animation.

Example

的中文翻译为:

示例

<!DOCTYPE html>
<html>
<head>
   <title>Hover Effect Border Animation</title>
   <style>
      /* Set up the body with flexbox to center the box */
      body {
         display: flex;
         justify-content: center;
         align-items: center;
         flex-direction: column;
         background-color: #48b6ff;
         min-height: 100vh;
      }
      /* Style the box with a transparent border */
      .box {
         display: inline-block;
         padding: 10px;
         font-size: 18px;
         color: #333;
         border: 2px solid transparent;
         transition: border 0.5s ease;
         /* Add the pulsing animation to the border */
         animation: border-pulse 2s ease-in-out infinite;
      }
      /* When the box is hovered, change the border to a gradient and disable the pulsing animation */
      .box:hover {
         border-image: linear-gradient(to right, #f00, #0f0, #00f);
         border-image-slice: 1;
         animation: none;
      }
      /* Define the pulsing animation */
      @keyframes border-pulse {
         0% {
            border-color: #f00;
         }
         50% {
            border-color: #0f0;
         }
         100% {
            border-color: #00f;
         }
      }
   </style>
</head>
<body>
   <!-- Add the box element to the HTML -->
   <div class="box">
      Hover over me
   </div>
</body>
</html>
登录后复制

方法 - 2

Here, we will create a loading animation by animating the border of the loading icon.

Algorithm

  • 使用声明将文档类型声明为HTML。

  • Start the HTML document by opening the tag.

  • 在标签内部添加

    标签。
  • 标签内,添加一个标签,并将文档的标题设为"Loading Border Animation"。
  • Add a

  • Inside the

  • 通过设置其大小、形状、边框颜色和动画属性,添加一个CSS规则来样式化加载动画。

  • 使用 @keyframes 规则创建一个名为 "spin" 的动画。

  • Add the transform rule to rotate the element 360 degrees.

  • Inside the

    tag, add an
    element with a class of "loading" to display the loading animation.

    Example

    的中文翻译为:

    示例

    <!DOCTYPE html>
    <html>
    <head>
       <title>Loading Border Animation</title>
       <style>
          /* Styling the body element to center the loading animation */
          body{
             display: flex;
             justify-content: center;
             align-items: center;
             flex-direction: column;
             min-height: 100vh;
             background-color: rgb(253, 114, 114);
          }
    
          /* Styling the loading element */
          .loading {
             width: 50px;
             height: 50px;
             border: 5px solid #ccc;
             border-top-color: #3498db; /* Changing the top border color */
             border-radius: 50%; /* Making the border round */
             animation: spin 1s linear infinite; /* Adding animation to spin continuously */
             margin: 50px auto; /* Centering the element with margin */
          }
    
          /* Defining the animation */
          @keyframes spin {
             to {
                transform: rotate(360deg); /* Rotating the element 360 degrees */
             }
          }
       </style>
    </head>
    <body>
       <div class="loading"></div> <!-- The loading element -->
    </body>
    </html>
    
    登录后复制

    Approach - 3

    我们将使用CSS对呼叫到行动按钮应用边框动画。

    Algorithm

    • Create a container and center it.

    • 使用初始为透明的边框和过渡属性对元素进行样式设置,使边框在0.5秒内动画化。

    • Create a hover effect for the element that changes the border to a linear gradient of three colors: red, green, and blue.

    • 定义一个名为 "border-pulse" 的关键帧动画,随着时间的推移改变元素的边框颜色。

    • 将“border-pulse”动画应用于元素的初始状态。

    • When the element is hovered over, disable the "border-pulse" animation by setting it to "none".

    Example

    的中文翻译为:

    示例

    <!DOCTYPE html>
    <html>
    <head>
       <title>Call to Action Border Animation</title>
       <style>
          /* Set the background color and center content vertically */
          body {
             background-color: #48b6ff;
             font-family: Arial, sans-serif;
             display: flex;
             justify-content: center;
             align-items: center;
             flex-direction: column;
             min-height: 100vh;
          }
          /* Style the button */
          .cta-button {
             display: inline-block;
             position: relative;
             padding: 16px 32px;
             background-color: #ff4d4d;
             color: #fff;
             font-size: 24px;
             text-transform: uppercase;
             text-decoration: none;
             border: none;
             overflow: hidden;
             transition: all 0.4s ease-out;
          }
          /* Add a pseudo-element to create the border animation */
          .cta-button:before {
             content: "";
             display: block;
             position: absolute;
             top: 0;
             left: 50%;
             width: 0;
             height: 100%;
             background-color: #fff;
             transform: translateX(-50%);
             z-index: -1;
             transition: all 0.4s ease-out;
          }
          /* Change the background and text color on hover */
          .cta-button:hover {
             background-color: #fff;
             color: #ff4d4d;
          }
          /* Animate the pseudo-element to create the border animation */
          .cta-button:hover:before {
             width: 110%;
          }
          </style>
    </head>
    <body>
       <a href="#" class="cta-button">Click Me</a>
    </body>
    </html>
    
    登录后复制

    Conclusion

    然而,边框动画有时可能会导致性能问题,特别是在过度使用或应用于大型元素时,会导致页面加载时间变慢和整体性能降低。一些较旧的网络浏览器可能不支持某些动画技术。

    我们还可以使用SVG图形和JavaScript创建边框动画。它们允许更复杂的动画,并提供对动画的更多控制。

以上就是使用 CSS 创建边框动画的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:tutorialspoint网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号