如何将我的媒体查询与 java 脚本集成以支持 IE 中的 @media 查询?
我编写这些媒体查询是为了调整浏览器窗口的大小
@media screen and (min-width:768px) and (max-width:1023px) {
#wrapper {
width:621px;
padding-left: 50px;
margin:0 auto; background:red;
}
}
@media screen and (min-width:1024px) and (max-width:2047px) {
#wrapper {
margin:0 auto;
padding-left: 50px;
width: 925px; background:yellow;
}
}
,它可以工作,但在 IE 中它不起作用,然后我在 Google 上读到,Internet Explorer 8 或更早版本不支持媒体查询。我们可以使用java脚本得到这个,我无法用java脚本编写和集成上面的代码。有人可以帮助我吗?
I wrote these media queries for re-size my browser window
@media screen and (min-width:768px) and (max-width:1023px) {
#wrapper {
width:621px;
padding-left: 50px;
margin:0 auto; background:red;
}
}
@media screen and (min-width:1024px) and (max-width:2047px) {
#wrapper {
margin:0 auto;
padding-left: 50px;
width: 925px; background:yellow;
}
}
its working but in IE its not working then i read on Google that media query is not supported in Internet Explorer 8 or older. we can get this using java script , i am not able to write and integrate my above code with java-script. can anybody help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个简单且轻量级的解决方案是 Respond.js。
您所要做的就是在 CSS 之后包含脚本,然后它就可以工作了。
这是一个演示,请在旧版本的 IE 中查看:http://scottjehl.github。 com/Respond/test/test.html
A simple and lightweight solution is Respond.js.
All you have to do is include the script after your CSS, and it Just Works.
Here's a demo, check it in an older version of IE: http://scottjehl.github.com/Respond/test/test.html
@贾曼;检查这篇文章,他们使用
java script
&示例中的媒体查询
可能会帮助您http:// css-tricks.com/6206-resolution-specific-stylesheets/在其中你必须根据
屏幕尺寸
的变化调用不同的css。@jamman; check this article they use
java script
&media query
in there example may that help you http://css-tricks.com/6206-resolution-specific-stylesheets/in it you have to call a different css according to the
screen size
change.