JavaScript
1
Вклад в тег
<link rel="stylesheet" href="<?php ... ?>">
$detect = new Mobile_Detect; // Инициализируем копию класса
// Любое мобильное устройство (телефоны или планшеты).
if ( $detect->isMobile() ) {
echo "mobile.css"
}
// Планшетные компьютеры
if( $detect->isTablet() ){
echo "tablet.css" и тд
}
// Исключаем планшеты
if( $detect->isMobile() && !$detect->isTablet() ){
}
// Выбираем специфические платформы
if( $detect->isiOS() ){
}
if( $detect->isAndroidOS() ){
}