是否有可能创建使用JavaScript或jQuery的飞全媒体查询规则?
我已经使用了许多媒体查询目标广义视和具体的设备/使用内联CSS,进口屏幕和链接的文件:
@media screen and (min-width:400px) { ... }
@import url(foo.css) (min-width:400px);
<link rel="stylesheet" type="text/css" media="screen and (min-width: 400px)" href="foo.css" />
我可以添加/使用jQuery删除类:
$("foobar").click(function(){
$("h1,h2,h3").addClass("blue");
$("div").addClass("important");
$('#snafu').removeClass('highlight');
});
我也看document.stylesheets
和看似过时的和具体的浏览器:
document.styleSheets[0].insertRule("p{font-size: 20px;}", 0)
但是,我找不到任何引用以编程方式产生:
@media screen and (min-width:400px)
从JavaScript直接或以任何形式。