与外部CSS资源Respond.js(Respond.js with external css re

2019-10-20 07:34发布

要优化我们的网页到IE8,我们需要与respond.js(或其他simular溶液)添加MediaQueryes。 但似乎respond.js(和许多simular解决方案)需要本地CSS文件。

例如,我们喜欢使用CDN-CSS的leafletjs,但这不会通过IE8正确。

的任何想法如何做到这一点?

Answer 1:

Respond.js实际工作,如果你设置了一个提供代理页,它引用。

见https://github.com/scottjehl/Respond#cdnx-domain-setup并检查了跨域例如https://github.com/scottjehl/Respond/tree/master/cross-domain

<!-- Respond.js proxy on external server -->
<link href="http://externalcdn.com/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />

<!-- Respond.js redirect location on local server -->
<link href="/path/to/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />

<!-- Respond.js proxy script on local server -->
<script src="/path/to/respond.proxy.js"></script>


文章来源: Respond.js with external css resources