1

Is there any way to remove the rounded corners that apple devices add to your website icon?

I used

<link rel="apple-touch-icon" href="touch-icon-iphone.png" />

Which acts effect and rounded corners

<link  rel="apple-touch-icon-precomposed" href="touch-icon-iphone.png" />

which doesn't add any effect, but still has rounded corners.

I found the above tutorial here

Is there any way to remove the rounded corners??

4

2 回答 2

2

您无法删除圆角效果。从您链接到的教程中:

默认情况下,Apple 将圆角 Apple Touch Icon。此规则适用于所有选项。

主屏幕上的所有图标,无论是来自网站还是应用程序,都带有圆角。您可以做的是关闭光泽效果,您链接到的教程向您展示了如何做。对不起!

于 2012-12-26T11:42:33.127 回答
1

请参阅此链接IconsImages

从上面的链接中阅读名称为App Icons的整个主题...

当 iOS 在设备的主屏幕上显示您的应用程序图标时,它会自动添加以下视觉效果:

  1. 圆角
  2. 投影
  3. 反光光泽(除非你阻止光泽效果)

例如,一个简单的 57 x 57 像素 iPhone 应用程序图标可能如下所示:

在此处输入图像描述

当它显示在 iPhone 主屏幕上时,iOS 会添加圆角、阴影和反射光泽。所以相同的应用程序图标看起来像这样:

在此处输入图像描述

于 2012-12-26T11:57:22.873 回答