NatChen

Once you have chosen the road of life, you have to be brave enough to go to the end and never look back.

伪类+js实现CSS3 media queries跨界准确判断

@media screen and (min-width: 45em) {
    body:after{
     content:"宽屏"
   }
}
var content = window.getComputedStyle(document.body, ":after").getPropertyValue("content");
if (content === "窄屏") { 
// …… 
} else if (content === "普屏") {
 // …… 
} else if (content === "宽屏") { 
// …… 
}

posted @ 2018-04-04 15:11  NatChen  阅读(207)  评论(0编辑  收藏  举报