jQuery 检测 iPad,更改元素的字体大小

发布于 2024-11-14 13:34:16 字数 515 浏览 2 评论 0原文

如果用户使用 iPad,我需要更改某些元素的字体大小,因为 iPad 会将我的导航栏呈现在屏幕之外(由于 iPad 上存在一些未知的字体放大)。

这是我当前的CSS:

#mainmenu ul li a{
    font-size:1em;
    line-height:38px;    
    padding: 0px 10px;
    margin: 0 auto;
   float: left;
}

如果用户使用iPad,我希望将字体大小更改为.9em,所以我可以使用.attr或.addClass,对我来说并不重要,我只是不知道如何到了这一点,我想是这样的吗?

function isiPad(){
    return (navigator.platform.indexOf("iPad") != -1);
}

$(function() {
    if ($(isiPad).length == 1) {
  do something }
    });

I need to change the font-size of some elements if the user is on the iPad because the iPad renders my navigation bar off screen (due to some unknown font enlargement on iPads).

Here is my current CSS:

#mainmenu ul li a{
    font-size:1em;
    line-height:38px;    
    padding: 0px 10px;
    margin: 0 auto;
   float: left;
}

I want the font-size to be changed to .9em if user is on iPad, so I could either use the .attr or the .addClass, doesn't matter to me, I just dont know how to get to that point, something like this I presume?

function isiPad(){
    return (navigator.platform.indexOf("iPad") != -1);
}

$(function() {
    if ($(isiPad).length == 1) {
  do something }
    });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

汐鸠 2024-11-21 13:34:16

我们在这方面取得了成功:

function isiPad() {
    return navigator.userAgent.match(/iPad/i); 
}

We've had success with this:

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