Windows Phone 7 上网络书签的自定义主页磁贴/图标?

发布于 2024-11-01 11:15:15 字数 115 浏览 0 评论 0原文

是否可以在 Windows Phone 7 上为网络书签设置自定义主页磁贴/图标?目前,当您在网页上选择“固定以开始”时,生成的主页图块只是一个屏幕截图。有没有办法让它成为自定义图标(就像在 iPhone 上一样)?

Is it possible to set a custom home tile/icon for web bookmarks on the Windows Phone 7? Currently, when you select "pin to start" on a web page, the resulting home page tile is just a screen shot. Is there a way to make it a custom icon (like you can on the iPhone)?

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

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

发布评论

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

评论(4

鸠书 2024-11-08 11:15:15

没有。您无法更改屏幕截图图像。
至少现在还没有。谁知道未来的更新会发生什么。

Nope. You can't alter the screenshot image.
At least not yet. Who knows what may come in future updates.

岁月打碎记忆 2024-11-08 11:15:15

有一个解决方法。您创建一个覆盖整个网站的图像并提示用户“固定此网站”。它有点 hack-y,但似乎可以在 WP7 和 WP7 上运行。 8
http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/10/19/creating-a-custom-tile-to-link-to-your-website.aspx< /a>

这是我整理的一个工作示例:
http://cdpn.io/jlEur

There is a work-around for this. You create an image that overlays the entire site and prompt the user to "pin this site". It is a little hack-y, but seems to work on WP7 & 8
http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/10/19/creating-a-custom-tile-to-link-to-your-website.aspx

Here is a working example I put together:
http://cdpn.io/jlEur

红ご颜醉 2024-11-08 11:15:15

刚刚找到了一个在线工具,如果您不介意重定向,可以直接在 Windows Phone 浏览器中使用:

http://cheller .info/wpt/

其源代码:
https://github.com/fedecheller/WPCustomWebTiles

在手机开发者博客中找到“fedecheller” ”。
http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/10/19/creating-a-custom-tile-to-link-to-your-website.aspx< /a>

这不是最好的解决方案,如果您可以简单地编辑手机上的图标,那就更好了..
您可以: 检查 Windows Phone Marketplace 中是否有名为“Wiztiles”的工具。

Just found an online tool you can use directly with your Windows Phone browser if you don't mind getting redirected:

http://cheller.info/wpt/

Source code for it:
https://github.com/fedecheller/WPCustomWebTiles

Found here in the Phone Developer Blog, look for "fedecheller".
http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/10/19/creating-a-custom-tile-to-link-to-your-website.aspx

It's not the best solution, it would be nicer if you could simply edit the icon on the phone..
And you can: Check the Windows Phone Marketplace for a tool called "Wiztiles".

柠栀 2024-11-08 11:15:15

在 Windows Phone 8-10 上,您可以使用 browserconfig.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
  <msapplication>
    <tile>
      <square70x70logo src="images/smalltile.png"/>
      <square150x150logo src="images/mediumtile.png"/>
      <wide310x150logo src="images/widetile.png"/>
      <square310x310logo src="images/largetile.png"/>
      <TileColor>#009900</TileColor>
    </tile>
  </msapplication>
</browserconfig>

和 HTML 文件

<head>
<meta name="msapplication-config" content="browserconfig.xml" />
</head>

轻松完成此操作更多信息 此处

On Windows Phone 8-10 your can do it easily using the browserconfig.xml file

<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
  <msapplication>
    <tile>
      <square70x70logo src="images/smalltile.png"/>
      <square150x150logo src="images/mediumtile.png"/>
      <wide310x150logo src="images/widetile.png"/>
      <square310x310logo src="images/largetile.png"/>
      <TileColor>#009900</TileColor>
    </tile>
  </msapplication>
</browserconfig>

And in the HTML file

<head>
<meta name="msapplication-config" content="browserconfig.xml" />
</head>

More infos here

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