“Wenn mobil” Code-Antworten

JS If Mobile Browser

// credit to Timothy Huang for this regex test: 
// https://dev.to/timhuang/a-simple-way-to-detect-if-browser-is-on-a-mobile-device-with-javascript-44j3
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
  return true
}
else{
  return false
}
Funpro

Mobile CSS erkennen

@media only screen and (max-device-width: 480px){
 /* in mobile css commands */ 
}
Master Aniket

Wenn mobil

function isMobile() {
    return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);
}
Weary Wildebeest

Ähnliche Antworten wie “Wenn mobil”

Fragen ähnlich wie “Wenn mobil”

Weitere verwandte Antworten zu “Wenn mobil” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen