我给按钮添加了 compass 的 transition-duration(.4s)
的动画,用于控制按钮背景色。
但是加了以后 登录页面 和【控制台-个人设置】页面的按钮却出现了从小变大的效果,但是在【设置-(下面所有页面)】下所有的按钮都没有出现大小变化的情况。
于是我又加了句 transition-property(background-color)
,按钮的形状没有变化了,但是出现了从无到有的渐变过程,这个就不明白了,js 全禁用了也是这样,查了半天也没查出原因。
safari 和 firefox 下都显示正常,只有在 hover 过程才出现背景色渐变的动画。
但是在 Chrome 浏览器里出现了形状变化或展示之初变化(我的版本 31.0.1650.57),不知道是什么问题,应该如何解决?
演示后台 http://typecho.org/admin/login.php
After researching for a long time, I finally found a feasible solution online
http://css-tricks.com/transitions-only-after-page-load/
Solution steps (modify or add code in the specified file):
admin/header.php
admin/css/style.css
admin/common-js.php
It has been found that problems may occur in the following situations:
Minimized problematic code:
index.html
index.css
P.S. This should be considered a Chrome bug
-- I'LL BE BACK 答错了无所谓,我还会回来的 --
I don’t understand compass, and I probably can’t get the original file of compass, so I started with the final css file
Put the
transision
related attributes only on the:hover
pseudo-class, rather than on the entire class of the element.https://gist.github.com/shamiao/7747795 My modifications to style.css. (The parts with comments are changes)