9

我正在尝试在使用 ajax 加载内容期间创建漂亮的动画。我想在使用“内容”重新加载 div 期间使用显示图标,但是我不知道是否只能使用 CSS 来做到这一点。

图标应该:

  1. 水平始终位于 div 的中心,带有“内容”
  2. 垂直始终位于“内容的可见部分”的中心
  3. 在隐藏菜单的幻灯片动画期间,应该在整个动画期间停留在“内容的可见部分”的垂直中心。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

如果无法根据“内容的可见部分”垂直居中,则可以根据浏览器的视口居中图像。

[编辑]

这是我的小提琴: http: //jsfiddle.net/QWB9x/74/和可能应该改变的部分:

.loading #img_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    display: block;
}
4

5 回答 5

2

这对我最有效:)

function loadNewContent(){
 $(".loaderCont").removeClass("loading")
}

$(document).ready(function () {

 $("#hide_button").on("click", function () {
      $(this).closest(".bottom").toggleClass("left_hided");
      $(".loaderCont").toggleClass("left_hided2");
 });

 $("#filter1,#filter2,#filter3,#filter4").on("click", function() {
     $(".loaderCont").addClass("loading");
     setTimeout(loadNewContent, 2000);
 });
});

CSS:

.header {
    background-color: Green;
    width: 100%;
    margin-bottom: 20px;
     height: 100px;
}
.left {
    background-color: Red;
    float: left;
    width: 100px;
}
.left_hided .left{
    margin-left: -85px;
}
.right {
    background: Aqua url("http://i.imgur.com/ifyW4z8.png") 50% repeat-y;
    width: calc(100% - 140px);
    float: right;
}

.left_hided .right{
     width: calc(100% - 55px);
}

input{
    float:right;
}

.loaderCont {
    background-color: rgba(255, 0, 0, 0.6);
    height: 100%;
    width: calc(100% - 140px);
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

.left_hided2 {
     width: calc(100% - 55px);
}

#loader {
    background: url(http://i.stack.imgur.com/FhHRx.gif) no-repeat center center;
    position: relative;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    display: block;
     height: 32px;
     width: 32px;
}

.loading {
    z-index: 9001;
}

JSFiddle:http: //jsfiddle.net/ZRwzr/1/

于 2014-04-12T10:57:08.273 回答
0

您无需编写太多脚本即可为其分配位置。你可以用简单的CSS来做到这一点。

只需使加载器相对于其父级即可。指定高度和宽度并执行以下 css 部分。

.loader{
    position: relative;
    top: -half of the height;
    left: -half of the width;
    margin-top: 50%;
    margin-left: 50%;
}

适用于所有设备

于 2014-01-07T13:18:44.430 回答
0

为了满足您的要求,您需要使用 JavaScript 来确定需要使用固定位置 div 将加载图像放置在可见部分上的位置,然后在用户调整窗口大小或滚动窗口时重新定位它,使其始终在所需的位置。

$(window).scroll(function() {
    scrolling();
});

$(window).resize(function() {
   scrolling(); 
});

scrolling();

function scrolling() {
    var windowHeight = $(window).height();
    var scrollTop = $(window).scrollTop();
    var offsetTop = $('#thediv')[0].offsetTop;
    var offsetHeight = $('#thediv')[0].offsetHeight;

    var offsetWidth = $('#thediv')[0].offsetWidth;

    var top = offsetTop - scrollTop;
    top = top < 0 ? 0 : top;

    var bottom = (scrollTop + windowHeight) - (offsetHeight + offsetTop);
    bottom = bottom < 0 ? 0 : bottom;

    $('.image').css('top', top);
    $('.image').css('bottom', bottom);
    $('.image').css('width', offsetWidth);
}

请注意,如果您更改 div 的宽度,您将始终需要调用该scrolling()函数,以便它可以重新计算位置。

我还将加载图像作为背景图像添加到固定 div 中,以便我们可以使用 CSS 将其居中。

.image {
    position: fixed;
    text-align:center;
    background-image:url('http://i.stack.imgur.com/FhHRx.gif');
    background-repeat:no-repeat;
    background-position:center center;
    background-color:rgba(255,255,255,.4);
}

这是 JSFiddle http://jsfiddle.net/QWB9x/89/

于 2013-07-22T11:46:22.657 回答
-2

使用 z-index 示例:-

 <div style="z-index:100;">loading image</div> 
于 2013-07-20T13:42:28.993 回答
-2
.loading #img_loading {
    position: fixed;
    top: 50%;
    left: calc(50% + 55px);
    display: block;
}

上面就解决了一半的问题,需要用javascript动态更新左边。

于 2013-07-20T13:49:48.767 回答