css实现8种不同风格圈圈加载动画效果代码

代码语言:html

所属分类:加载滚动

代码描述:css实现8种不同风格圈圈加载动画效果代码

代码标签: css 圆圈 加载 动画 loading

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <style>
        .spinner {
            width: 70px;
            height: 70px;
            border: 8px solid lightblue;
            border-top-color: blue ;
            border-radius: 50%;
            animation: spin 2s linear infinite;
        }
        
        .spinner>div{
            box-sizing: border-box;
            width: 100%;
            height: 100%;
        }
        
        .spinner-dual {
            width: 70px;
            height: 70px;
            border: 8px solid transparent;
            border-top-color: blue;
            border-bottom-color: blue;
            border-radius: 50%;
         .........完整代码请登录后点击上方下载按钮下载查看

网友评论0