0

我想更改加载栏的样式 - 我该怎么做?我发现我必须更改JS文件中的css。但我无法自定义我的加载栏。我已经做了一些改变,但它不起作用:

 va = function(d) {
    D(C + t(Tb) + t(d), {
        position: Sa,
        width: 0,
        height: 0,
        overflow: jb,
        backgroundImage: url("http://10.200.1.200/bosch_life/life_dev/static/img/layout/loading.png")
        });
        return va["$" + d] = k(T(ra), {
        "class": Tb + C + d
    })
}

请帮帮我...

4

2 回答 2

0

I can't load your background file, so I can't see what image you are trying to use.

if you just want to change the color, just look in .js file for the first instance of backgroundColor: '#000' and replace it with your new color. (The second instance of backgroundColor is for the dot indicator if you choose to display the horizontal/vertical indicator.) I'm using the minified version, and it's on line 35.

The full annotated code is https://github.com/pisi/Reel/blob/master/jquery.reel.js line 1642.

于 2012-08-16T16:30:08.770 回答
0

预加载器的高度可通过 Reel 选项进行配置preloader,该选项采用数字像素值(4默认情况下,0完全禁用预加载器进度指示)。

预加载器是使用在样式表之前注入头部的 CSS 样式表来设置样式的,因此只需将您想要的任何 CSS 属性应用于.reel-preloader样式表中的类,就可以很容易地进行自定义。

例如,使预加载器变为红色并粘在图像的顶部而不是底部:

.reel-preloader {
  background: #F00;
  top: 0;
}

预加载器的宽度随着从 0% 到 100% 的百分比进度以编程方式增长。

于 2013-08-25T10:40:16.683 回答