我在我的网站上包括了Modernizr:
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/modernizr.custom.js"></script>
Run Code Online (Sandbox Code Playgroud)
我在custom.js中有这个:
if (Modernizr.mq("screen and (max-width:480)")) {
alert("hello");
}
Run Code Online (Sandbox Code Playgroud)
我将浏览器的大小调整为480px,刷新了网站,但我没有看到任何警报.
有什么建议来解决这个问题
您需要px媒体查询中的单位值:
你的路线:
if (Modernizr.mq("screen and (max-width:480)")) {\
Run Code Online (Sandbox Code Playgroud)
应该:
if (Modernizr.mq("screen and (max-width:480px)")) {
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6769 次 |
| 最近记录: |