美文网首页
页面加载load

页面加载load

作者: 骚伦 | 来源:发表于2018-12-04 12:08 被阅读0次
  • html code
<div class="loader" style="display:block">
        <div class="la-ball-clip-rotate">
        <div></div>
    </div>
</div>
  • css code
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000 50% 50%;
    opacity: .3;
}
.la-ball-clip-rotate {
    display: block;
    font-size: 0;
    color: #428bca;
    width: 64px;
    height: 64px;
}

.la-ball-clip-rotate, .la-ball-clip-rotate>div {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.la-ball-clip-rotate>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
    width: 64px;
    height: 64px;
    border-width: 4px;
    background: 0 0;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: ball-clip-rotate .5s linear infinite;
    -moz-animation: ball-clip-rotate .5s linear infinite;
    -o-animation: ball-clip-rotate .5s linear infinite;
    animation: ball-clip-rotate .5s linear infinite;
}

相关文章

  • 页面加载load

    html code css code

  • jQuery模拟vue子组件向父组件传值

    描述:项目是用jQuery为框架,是用ajax.load局部加载页面的单页面应用。未局部加载的页面(页面A)就相当...

  • 5.11登陆页面

    页面加载事件 protected void Page_Load(object sender, EventArgs ...

  • vue监听一些标签元素的方法

    1、iframe load用于判断第三方页面是否加载完成:src 加载的页面地址用于解决第三方页面在加载缓慢的时候...

  • DOMContentLoaded和load

    document.DOMContentLoaded和window.load都是页面加载的时候触发的,只是加载时机不...

  • js基础-1

    1. document load 和 document ready 的区别 页面加载完成有两种事件 load是当页...

  • 知识回顾

    1.配置jq条件 2.页面加载 function load(){ window.open(...

  • JS面试1

    1.document load 和 document ready 的区别 页面加载完成有两种事件 1.load是当...

  • JS常见面试题

    1.document load和document ready的区别 1.load是当页面所有资源全部加载完成后(包...

  • web浏览器常用事件

    浏览器窗口事件 load 页面加载完成时触发 beforeunload 窗口关闭之前触发 ...

网友评论

      本文标题:页面加载load

      本文链接:https://www.haomeiwen.com/subject/zejmcqtx.html