移动端横屏竖屏判断
2019-07-25 本文已影响0人
HE_Zoro
关键词:
window.matchMedia("(orientation: portrait)")
@media (min-width: 700px) and (orientation: landscape) { ... }
orientationchange事件
关键词:
window.matchMedia("(orientation: portrait)")
@media (min-width: 700px) and (orientation: landscape) { ... }
orientationchange事件