0

我们计划在我们的应用程序中加入智能横幅。

是否可以自定义智能横幅。例如,隐藏关闭按钮,使用户永远无法关闭它。

我尝试了 jquery 插件(https://github.com/jasny/jquery.smartbanner)。但它显示了实际的 Apple 渲染横幅和其下方的空白(在自定义横幅的长度内)。(注意:我调整了代码以运行 iOS:6+)

我现在正在解决这个空白问题并使用 js 隐藏默认横幅。

任何有关实现定制的帮助将不胜感激!

细节:

iOS版本:iOS 7.1.2

测试设备:iPhone 5s

如果需要任何其他详细信息,请告诉我。

提前致谢!

4

1 回答 1

0

jQuery Smart Banner 插件具有以下默认选项,我建议您使用这些参数:

$.smartbanner({

             ...
daysHidden: 0, // Duration to hide the banner after being closed (0 = always show banner)
//you may use this one as well        
daysReminder: 0, // Duration to hide the banner after "VIEW" is clicked *separate from when the close button is clicked* (0 = always show banner)

            ...
        })

这应该始终显示您的横幅。来源在 GitHub

于 2014-07-29T08:00:28.443 回答