哪里可以找到AJAX指标图像?

时间:2016-08-11 06:57:30

标签: primefaces

我想在Primefaces Showcase上使用相同的加载指示器gif: http://www.primefaces.org/showcase/ui/ajax/basic.xhtml

源中没有对它的引用。它在哪里定义?

2 个答案:

答案 0 :(得分:0)

使用开发工具,您可以获得(re)source

我建议使用具有真正透明度的SVG。看起来好多了!那里有几个online generators

  

I am not sure how to use this.

指标图片与<p:ajaxStatus />结合PrimeFaces ShowCase中显示的<p:graphicImage />一起使用,并在PrimeFaces Documentation中说明。 要像在the page you referenced一样在页面的右下角显示它,您必须添加自定义样式,如:

<p:ajaxStatus
    style="position: fixed; bottom: 0px; right: 0px; z-index: 9999999999;"
>
    ...
</p:ajaxStatus>

答案 1 :(得分:0)

http://www.ajaxload.info/生成并下载 (AJAX-loader.gif)

复制到(例如): webapp / resources / images

代码:

            <p:ajaxStatus style="height:16px">
                <f:facet name="start">
                    <h:graphicImage name="images/ajax-loader.gif" />
                </f:facet>
                <f:facet name="complete">
                    <h:outputText value="" />
                </f:facet>
            </p:ajaxStatus>