android - 如何防止在移动设备中加载样式表
<p><p>我希望防止智能手机和平板电脑上出现一系列动画。我能想到的最简单的解决方案是将这些动画 CSS 移动到单独的样式表中,并以某种方式阻止该样式表加载到所有智能手机和平板电脑中。</p>
<p>我怎样才能做到这一点?</p>
<p><strong>更新:</strong> </p>
<ol>
<li>请不要使用针对屏幕宽度的媒体查询(这远非精确,因为某些平板电脑与某些笔记本电脑一样宽)。 </li>
<li>解决触控设备问题是我可以接受的解决方案,虽然并不完美,因为某些笔记本电脑具有此功能。</li>
<li>我认为理想的解决方案是解决移动浏览器和操作系统问题。</li>
</ol></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以在 CSS <a href="http://www.w3schools.com/cssref/css3_pr_mediaquery.asp" rel="noreferrer noopener nofollow">http://www.w3schools.com/cssref/css3_pr_mediaquery.asp</a> 中使用<strong>媒体查询</strong> </p>
<p>例如:</p>
<pre><code>@media only screen and (max-width:991px){
/*insert here all the css you want to be load ONLY on devices below 991px*/
}
</code></pre>
<p>如果你想<strong>将你的 CSS 分成两张表</strong>,那么你可以在 <code><head></code> 标记中进行设置:</p>
<pre><code><link href="exmaple.css" media="(min-width: 991px)" rel="stylesheet" type="text/css" />
</code></pre>
<p><strong>编辑:</strong></p>
<p>在您的情况下,一种选择是设置这样的媒体查询:</p>
<pre><code> @media only screen and (min-width:1200px){
/*insert here those CSS animations.*/
/*they will only take effect on devices above 1200px*/
}
</code></pre>
<p>当然,您可以设置<strong>任何分辨率</strong>并<strong>根据需要使用 min-width 和 max-width</strong>。</p></p>
<p style="font-size: 20px;">关于android - 如何防止在移动设备中加载样式表,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30504761/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30504761/
</a>
</p>
页:
[1]