如何获取 Chrome / WebKit 中过渡的元素的当前颜色?
Posted
技术标签:
【中文标题】如何获取 Chrome / WebKit 中过渡的元素的当前颜色?【英文标题】:How can I get the current color of an element that is mid-transition in Chrome / WebKit? 【发布时间】:2011-10-15 06:41:03 【问题描述】:我在 chrome 中有一个颜色过渡。我想随时使用 javascript 检索颜色。目前,我正在访问 DOM 中的 .style.color,但这只会给我目标值。
编辑这是不久前回答的,可以在此处查看 chrome 的示例http://nu11.co.uk/
【问题讨论】:
【参考方案1】:getComputedStyle([element],"").getPropertyValue([property])
应该返回过渡中的颜色(但我没有检查它。)
【讨论】:
我想我爱你。 getComputedStyle( [元素], null ).color以上是关于如何获取 Chrome / WebKit 中过渡的元素的当前颜色?的主要内容,如果未能解决你的问题,请参考以下文章