对于不透明度有一些velocity.js问题
例如,在css文件中:
#background{ opacity: .5 }
和 咖啡脚本 部分:
$("#backgound").velocity(
opacity: 0
, 350)
速度不会有任何影响。背景颜色也是如此:例如#background{ background-color: rgba(255, 255, 255, 0.5) }
,通过速度改变背景颜色不会产生任何影响
对此有任何反馈意见!
答案 0 :(得分:2)
检查此[ EXAMPLE ]
我用opacity
和backgroundColor
做了你想做的事
Velocity尚未支持rgba()
,但您可以将backgroundColor
与HEX
单位一起使用,并将其透明度更改为backgroundColorAlpha
。
祝你好运
答案 1 :(得分:0)
您忘记使用括号 - >
$( “#backgound”)。速度({ 不透明度:0 },350)
答案 2 :(得分:0)
试试这个: braket forgetting !!
$div.velocity({
properties: { opacity: 1 },
options: { duration: 500 }
});