Primefaces galleria - 如何在没有filmStrip的情况下导航

时间:2013-04-25 11:31:47

标签: primefaces

我需要在没有底部的胶片条的情况下设置主要广场。当我使用showFilmstrip =“false”时,无法手动导航。即使添加autoPlay =“true”也不会使内容移动。

<p:galleria id="gal" value="#{articleController.welcomes}" var="w" autoPlay="true" showFilmstrip="false" >
    <h:outputLabel value="#{w.sinhalaTopic}" ></h:outputLabel>
</p:galleria>

有没有办法在底部没有电影胶片的眩光,但能够用两边的箭头导航?如果那是不可能的,那么是否还有其他类似的primefaces组件?

1 个答案:

答案 0 :(得分:1)

.ui-galleria-filmstrip-wrapper {
    display:none;
}

将高级代码添加到.css文件中,这会使条带隐藏在p:galleria的底部。