こんにちは、siffy ベースの html5 インタラクティブからサポートされていないブラウザをリダイレクトする方法を見つけようとしています。
残念ながら、私はブラウザ/機能検出の経験がないので、コードの基本的なスケルトンを持っているだけです:
// this line would confirm compatible browser is present and sends to a swiffy html5 page:
if(navigator.appName == "Chrome 18.0+" || "Firefox 4+" || "Safari 5.1+" || "Internet Explorer 9+" || "Opera 12+" || "Mobile Safari iOS 5+" || "Android 4.0.3+")
{
window.location = "timeline_web.html"
}
else{
// this line sends other browsers to fallback .png based version:
window.location = "timeline_web_fallback.html"
}
これを設定する方法を知っていれば、私は非常に感謝しています! あなたが助けてくれることを願っています