这里有个有点奇怪的问题,我的社区成员抱怨说,当他们在网站上点击时,论坛的页脚会反复跳入和跳出视野。我原本打算在加载内容(出现加载动画)时隐藏页脚,但找不到触发显示/隐藏的方法。谢谢。
4 个赞
Are you adding the footer via the above/below footer plugin outlet? If so, wrap your HTML in {{#if showFooter}}:
<script type="text/x-handlebars" data-template-name="/connectors/below-footer/custom-footer">
{{#if showFooter}}
your footer content here
{{/if}}
</script>
7 个赞