Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デスクトップとモバイルの両方の訪問者がいる静的なページがいくつかあります。モバイルからの訪問者のみにバナーを表示することはできますか? PHP ソリューションも問題ありません。
次のいずれかの方法を使用します。
PHPモバイル検出
タッチイベントの検出:
`
var mobile = !!('createTouch' in document) && (document['createTouch']);
参考文献
軽量デバイス-PHPでの検出
タッチイベント