Ruby on Rails:将 .png iphone bomark 图标放在哪里?

发布于 2024-12-03 22:08:48 字数 198 浏览 2 评论 0原文

我正在尝试向我的 Rails 应用程序添加一个图标,以便在用户决定为其添加书签时该图标会显示在 iPhone 的主屏幕上。 我尝试了一些方法,但它不起作用。我到底应该将 .png 文件放置在哪里?我是否必须提供多种尺寸才能支持 iphone 4 和 ipad? 一旦我复制了图像,我必须重新启动服务器吗?我是否必须为我的视图之一添加额外的代码行?

非常感谢任何帮助!

I'm trying to add an icon to my rails applications so that the icon shows up on an iphone's homescreen if a user decides to bookmark it.
I have tried a couple of things and its just not working. Where exactly do I have to place the .png file? Do I have to provide multiple sizes in order to support the iphone 4 and the ipad?
To I have to restart the server once I have copied the image over? Do I have to at extra lines of code to one of my views?

Any help is greatly appreciated!

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

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

发布评论

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

评论(2

甜妞爱困 2024-12-10 22:08:48

以防万一有人像我一样出现。这就是你在 Rails 中的做法,.erb:

<%= favicon_link_tag 'mb-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>

这是我找到的参考。

http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html

Just in case someone comes along like I did.. this is how you do it on in rails, .erb:

<%= favicon_link_tag 'mb-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>

This is the reference I found.

http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html

新一帅帅 2024-12-10 22:08:48

在你的 HTML 头部位置:

<link href="http://DOMAIN.COM/iphone-home-icon.png" rel="apple-touch-icon"/>

In your HTML head place:

<link href="http://DOMAIN.COM/iphone-home-icon.png" rel="apple-touch-icon"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文