为了账号安全,请及时绑定邮箱和手机立即绑定

meta name="theme-color" 的动画

meta name="theme-color" 的动画

德玛西亚99 2023-02-17 10:25:16
我想使用由多种颜色组成的动画,例如<meta name="theme-color" content="..."> :#87CEFA、#1E90FF、#4169E1...是否可以theme-color在 Android 上的 Chrome 中设置动画?
查看完整描述

1 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

最后,我使用以下 JavaScript 代码找到了解决此问题的方法。使用此代码,浏览器 URL 栏上的 3 种主题颜色会动态变化。


var themeColorTest = new function() {

  function e() {

    "#87CEFA" === $themeColor.content ? $themeColor.content = "#1E90FF" : "#1E90FF" === $themeColor.content ? $themeColor.content = "#4169E1" : $themeColor.content = "#87CEFA",

      setTimeout(e, 500)

  }

  this.init = function() {

    $themeColor = document.querySelector("meta[name='theme-color']"),

      e()

  }

};

themeColorTest.init();

<!DOCTYPE html>

<html>


<head>

  <meta charset="utf-8">

  <title>Animation of meta name theme-color</title>

  <meta name="theme-color" content="#87CEFA" />

</head>


<body>

  <p>More info on the <code>theme-color</code> meta tag is at this <a href="https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android?hl=en">Google Developers Blog Post</a>.</p>

</body>


</html>


查看完整回答
反对 回复 2023-02-17
  • 1 回答
  • 0 关注
  • 242 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号