Change website design for mobile devices or browser resize

前端 未结 3 645
暗喜
暗喜 2021-01-05 22:57

Im sorry if this has been asked before im sure somewhere there must be an answer for this but for some or other reason I cant find it, probably using wrong search query

3条回答
  •  执笔经年
    2021-01-05 23:20

    If you want to do this with pure JavaScript, here it is-

    if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
    // some code.. 
    }
    

    Again you can do this with jquery-

    $.browser.device = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
    

    If you want to do this with PHP the check out this article

提交回复
热议问题