https://codepen.io/mukiwu/pen/OPWxjg
$(document).ready(function(){
if(matchMedia) {
var mq = window.matchMedia( "(min-width: 500px)" );
//
mq.addListener(WidthChange);
//
WidthChange(mq);
}
function WidthChange(mq){
if (mq.matches) {
// window width is at least 500px
$(".a").text("match");
}
else {
// window width is less than 500px
$(".a").text("nomatch");
}
}
})
---
也可以這樣寫
if (mq.matches) {
// window width is at least 768px
$("header nav ul").show(100);
}
else {
// window width is less than 768px
沒有留言:
張貼留言