如何在Kendo UI mobile中显示自定义加载图标/微调器?

时间:2014-01-11 01:32:31

标签: kendo-ui kendo-mobile

如何在Kendo UI Mobile中使用自定义微调器来更改默认加载图像?

也许这个页面中的一个微调器:

http://www.queness.com/post/9150/9-javascript-and-animated-gif-loading-animation-solutions

我搜索过,但找不到具体的信息。

1 个答案:

答案 0 :(得分:0)

新的加载器是完全CSS的,所以我不确定你可以使用动画gif,虽然你可以尝试用background-image标签替换背景css语句,看看会发生什么

您可以设置.km-loader元素的样式以实现类似于旧元素的外观,如下所示:

.km-ios .km-loader {
    background: rgba(0,0,0,.8);
    width: 200px;
    height: 150px;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -100px;
    border-radius: 20px;
}

有关加载程序http://jsbin.com/uwupay/6/edit?html,output

的不同状态的详细信息,请参阅此jsbin