如何将我的媒体查询与 java 脚本集成以支持 IE 中的 @media 查询?

发布于 2024-12-07 09:29:58 字数 472 浏览 1 评论 0原文

我编写这些媒体查询是为了调整浏览器窗口的大小

@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

饭团 2024-12-14 09:29:58

一个简单且轻量级的解决方案是 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

夜声 2024-12-14 09:29:58

@贾曼;检查这篇文章,他们使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文