前端之常用功能点总结

1.手机浏览器添加到主屏幕的图标设置

<!-- 安卓平台 chrome -->
  <meta name="mobile-web-app-capable" content="yes">
  <link rel="icon" sizes="192x192" href="assets/i/[email protected]">

  <!-- ios平台 safari -->
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
  <meta name="apple-mobile-web-app-title" content="佩佩的博客"/>
  <link rel="apple-touch-icon-precomposed" href="assets/i/[email protected]">

  <!-- win8以上 平台 磁贴 -->
  <meta name="msapplication-TileImage" content="assets/i/[email protected]">
  <meta name="msapplication-TileColor" content="#0e90d2">

猜你喜欢

转载自www.cnblogs.com/xingxia/p/frontend_operation.html