PHP 브라우저 크기를 php 값으로 표현하기
페이지 정보
본문
PHP detect browser window size
현재 브라우저(brwoser)의 크기를 표시해줍니다.
<?php
$myWidth = '<script> document.write(window.innerWidth); </script>';
echo $myWidth;
?>
마우스로 브라우저 화면의 크기를 변경하면 그 값이 실시간 반영하는 코드는 찾고 있습니다.
ajax 를 활용하면 가능할듯 싶은데
참고자료
https://forum.lowyat.net/topic/1015299/all
https://makitweb.com/capture-browser-window-resize-with-jquery/
현재 브라우저(brwoser)의 크기를 표시해줍니다.
<?php
$myWidth = '<script> document.write(window.innerWidth); </script>';
echo $myWidth;
?>
마우스로 브라우저 화면의 크기를 변경하면 그 값이 실시간 반영하는 코드는 찾고 있습니다.
ajax 를 활용하면 가능할듯 싶은데
참고자료
https://forum.lowyat.net/topic/1015299/all
https://makitweb.com/capture-browser-window-resize-with-jquery/
댓글목록
등록된 댓글이 없습니다.