原型脚本背景颜色:RGBA 颜色动画
原型是这样的 http://pioupioum.fr/sandbox/jquery-color/和脚本化的?
我想为我的网站背景定期制作 RGBA 动画,以获得一些性感和奇特的东西......
Is something like this http://pioupioum.fr/sandbox/jquery-color/ for Prototype and scriptaculous?
I want to periodical animate RGBA for my website background to get something sexy and fancy...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rgba
是最近才出现的,仅受最新浏览器支持。幸运的是,这些浏览器几乎相同,也支持 CSS 转换,因此不需要 Javascript 库。看看这个工作示例: massiveblue.comsource 解释道:
关键帧将“颜色”命名为帧序列,然后在
animation-name
规则中使用。animation-iteration-count
是无限
,因此它会连续循环。请记住为各种浏览器复制带有每个前缀-webkit-
、-moz-
和-o-
的规则,并且一组为了将来的兼容性,没有前缀。rgba
is pretty recent and only supported by the newest browsers. Luckily these are pretty much the same browsers that also support CSS transitions so no Javascript library is needed. Just look at this working example: massiveblue.comThe source explains it:
The keyframes names "colours" as the sequence of frames, that is then used in
animation-name
rule. Theanimation-iteration-count
isinfinite
so it loops continuously. Remember to duplicate the rules with each of the prefixes-webkit-
,-moz-
and-o-
for the various browsers, and one set with no prefix for future compatibility.