簡體   English   中英

使用某些瀏覽器查看時加載網站的移動版本

[英]Load mobile version of website when viewing with certain browsers

我的網站的移動版本是否可以基於瀏覽器加載。 Chrome對我在網站上產生的某些效果反應不佳,並且想知道是否可以加載簡化的移動版本。 提前致謝。

您可以使用Window.matchMedia(media query):

if (window.matchMedia("(max-width: 500px)").matches) {
    /* The viewport is less than, or equal to, 500 pixels wide */
} else {
    /* The viewport is greater than 500 pixels wide */
}

https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM