您好,
我开始检测使用了哪个平台。这已经奏效了:
// User-Agent-String auslesen
var UserAgent = navigator.userAgent.toLowerCase();
// User-Agent auf gewisse Schlüsselwörter prüfen
if (UserAgent.search(/(iphone|ipod|opera mini|fennec|palm|blackberry|android|symbian|series60)/) > -1) {
// mobiles Endgerät
alert("YOU HAVE A SMARTPHONE");
} else {
// kein mobiles Endgerät (PC, Tablet, etc.)
alert("YOU HAVE NO SMARTPHONE");
}
但是现在我想在 iphone 上显示,如果你有一个iphone全屏页面,那就有一个应用程序,你应该下载它。而不是应用程序的按钮和“不,谢谢你,继续正常页面”的按钮。
我该怎么做?
有人能帮助我吗?
页面应全屏显示,其他任何内容都不可见。
谢谢。答案 0 :(得分:0)
您应遵循Apple准则并使用智能应用横幅:https://developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/PromotingAppswithAppBanners/PromotingAppswithAppBanners.html
如果你真的想要全屏广告,请使用javascript来显示或创建覆盖整个屏幕尺寸的DIV标签。 DIV可以简单地设计为绝对位置,宽度/高度为100%
欢呼声