How to detect a mobile device in a web page

前端 未结 4 624
太阳男子
太阳男子 2020-12-30 04:54

For a website I want to use specific CSS rules for mobile devices. What I want is the following:

  • create a link on a phone number, and make it clickable for mo
相关标签:
4条回答
  • 2020-12-30 05:13

    maybe you can use callto:

    <a href="callto://+112345767890">Call me at +112345767890</a>
    

    since you're developing for mobile devices i think you should have a read on CSS3 Media Queries if you haven't done so yet.

    http://ubelly.com/2011/04/css3-media-queries-explained/?amp&amp

    0 讨论(0)
  • 2020-12-30 05:14

    http://detectmobilebrowsers.com/

    0 讨论(0)
  • 2020-12-30 05:19

    This is what i use to check if the given request comes from a mobile device:

    $mobile_browser = '0';
    
    if (preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|android)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) {
        $mobile_browser++;
    }
    
    if ((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml') > 0) or ((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE'])))) {
        $mobile_browser++;
    }    
    
    $mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'], 0, 4));
    $mobile_agents = array(
        'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird','blac',
        'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno',
        'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-',
        'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-',
        'newt','noki','oper','palm','pana','pant','phil','play','port','prox',
        'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar',
        'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-',
        'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp',
        'wapr','webc','winw','winw','xda ','xda-');
    
    if (in_array($mobile_ua,$mobile_agents)) {
        $mobile_browser++;
    }
    
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows') > 0) {
        $mobile_browser = 0;
    }
    
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'mac') > 0) {
            $mobile_browser = 0;
    }
    
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'ios') > 0) {
            $mobile_browser = 1;
    }
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'android') > 0) {
            $mobile_browser = 1;
    }
    
    if($mobile_browser == 0)
    {
        //its not a mobile browser
        echo"You are not a mobile browser";
    } else {
        //its a mobile browser
        echo"You are a mobile browser!";
    }
    ?>
    

    I made this with help of a mate of mine, if you have tips or corrections for me please give in comments:)

    0 讨论(0)
  • 2020-12-30 05:25

    If you just want a selector for href's using "tel" you can use css attr "starts with" selectors, like so...

    a[href^="tel"] { color: red; }
    

    See my example here: http://jsfiddle.net/blowsie/gn9Ld/

    0 讨论(0)
提交回复
热议问题