336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
JavaScript 에서 모바일 브라우저를 찾는데 참고할만한 좋은 소스인듯 하여 공유 합니다.
/**
* Determine the mobile operating system.
* This function returns one of 'iOS', 'Android', 'Windows Phone', or 'unknown'.
*
* @returns {String}
*/
function getMobileOperatingSystem() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
// Windows Phone must come first because its UA also contains "Android"
if (/windows phone/i.test(userAgent)) {
return "Windows Phone";
}
if (/android/i.test(userAgent)) {
return "Android";
}
// iOS detection from: http://stackoverflow.com/a/9039885/177710
if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
return "iOS";
}
return "unknown";
}
StackOverFlow : https://stackoverflow.com/a/21742107
참고하세요.
'나의 플랫폼 > Spring Framework' 카테고리의 다른 글
[Spring] Eclipse - BeanCreationException 발생 (0) | 2018.09.07 |
---|---|
[JavaScript] Using videojs to play video inline on ios (0) | 2018.08.09 |
[JavaScript] VideoJS에서 플레이 시간까지만 이동 되도록 (0) | 2018.07.26 |
[Spring Framework] Freezing Oracle DB (0) | 2018.07.04 |