際際滷
Submit Search
Webmobile - introduction aux sites mobiles
?
1 like
?
487 views
Arnaud GUILLAUME
Follow
Introductions aux sites mobiles
Read less
Read more
1 of 23
More Related Content
Webmobile - introduction aux sites mobiles
5.
Evolution du march└
des smartphones
12.
?
19.
RewriteEngine On RewriteCond
%{HTTP_USER_AGENT} "ipod|iphone|ipad" [NC,OR] RewriteCond %{HTTP_USER_AGENT} "android|palm" RewriteRule (.*) http://m.votredomaine.com [R=301,L]
20.
function isMobile() { //User
agent $ua = $_SERVER['HTTP_USER_AGENT']; //test si il s'agit d'un mobile return preg_match('/iphone/i',$ua) || preg_match('/android/i',$ua) || preg_match('/blackberry/i',$ua); }
21.
if ( (navigator.userAgent.match(/iPhone/i))
|| (navigator.userAgent.match(/Android/i) ) ) { window.location = "http://mobile.votredomaine.com"; }
22.
<link type="text/css" rel="stylesheet"
media="only screen and (max-device-width: 480px)" href="mobile.css">