javascript - Can I force iPad to show website only in Landscape mode? -
this question has reply here:
forcing web-site show in landscape mode only 3 answersi want forcefulness ipad show website in landscape mode?
is possible?
you can set css:
@media screen , (orientation:portrait){ html body * { display:none; } } @media screen , (orientation:landscape){ /* css */ }
in portait mode elemnts hidden. can set <div>switch landscape</div>
displayed in portait mode
javascript html css ipad landscape
No comments:
Post a Comment