css实现彩色气球飘动动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现彩色气球飘动动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> /* If you can't see it just hit space in here*/ body { font-family:'Wendy One', sans-serif; } body { background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #374566), color-stop(100%, #010203)); background-image: -webkit-radial-gradient(#374566, #010203); background-image: -moz-radial-gradient(#374566, #010203); background-image: -o-radial-gradient(#374566, #010203); background-image: radial-gradient(#374566, #010203); } span { text-transform: uppercase; } .container { width: 800px; height: 420px; padding: 10px; margin: 0 auto; position: relative; } .balloon { width: 738px; margin: 0 auto; padding-top: 30px; position: relative; } .balloon > div { width: 104px; height: 140px; background: rgba(182, 15, 97, 0.9); border-radius: 0; border-radius: 80% 80% 80% 80%; margin: 0 auto; position: absolute; padding: 10px; box-shadow: inset 17px 7px 10px rgba(182, 15, 97, 0.9); -webkit-transform-origin: bottom center; } .balloon > div:nth-child(1) { background: rgba(182, 15, 97, 0.9); left: 0; box-shadow: inset 10px 10px 10px rgba(135, 11, 72, 0.9); -webkit-animation: balloon1 6s ease-in-out infinite; -moz-animation: balloon1 6s ease-in-out infinite; -o-animation: balloon1 6s ease-in-out infinite; animation: balloon1 6s ease-in-out infinite; } .balloon > div:nth-child(1):before { color: rgba(182, 15, 97, 0.9); } .balloon > div:nth-child(2) { background: rgba(242, 112, 45, 0.9); left: 120px; box-shadow: inset 10px 10px 10px rgba(222, 85, 14, 0.9); -webkit-animation: balloon2 6s ease-in-out infinite; -moz-animation: balloon2 6s ease-in-out infinite; -o-animation: balloon2 6s ease-in-out infinite; animation: balloon2 6s ease-in-out infinite; } .balloon > div:nth-child(2):before { color: rgba(242, 112, 45, 0.9); } .balloon > div:nth-child(3) { background: rgba(45, 181, 167, 0.9); left: 240px; box-shadow: inset 10px 10px 10px rgba(35, 140, 129, 0.9); -webkit-animation: balloon4 6s ease-in-out infinite; -moz-animation: balloon4 6s ease-in-out infinite; -o-animation: balloon4 6s ease-in-out infinite; animation: balloon4 6s ease-in-out infinite; } .balloon > div:nth-child(3):before { color: rgba(45, 181, 167, 0.9); } .balloon > div:nth-child(4) { background: rgba(190, 61, 244, 0.9); left: 360px; box-shadow: inset 10px 10px 10px rgba(173, 14, 240, 0.9); -webkit-animation: balloon1 5s ease-in-out infinite; -moz-animation: balloon1 5s ease-in-out infinite; -o-animation: balloon1 5s ease-in-out infinite; animation: balloon1 5s ease-in-out infinite; } .balloon > div:nth-child(4):before { color: rgba(190, 61, 244, 0.9); } .balloon > div:nth-child(5) { background: rgba(180, 224, 67, 0.9); left: 480px; box-shadow: inset 10px 10px 10px rgba(158, 206, 34, 0.9); -webkit-animation: balloon3 5s ease-in-out infinite; -moz-animation: balloon3 5s ease-in-out infinite; -o-animation: balloon3 5s ease-in-out infinite; animation: balloon3 5s ease-in-out infinite; } .balloon > div:nth-child(5):before { color: rgba(180, 224, 67, 0.9); } .balloon > div:nth-child(6) { background: rgba(242, 194, 58, 0.9); left: 600px; box-shadow: inset 10px 10px 10px rgba(234, 177, 15, 0.9); -webkit-animation: balloon2 3s ease-in-out infinite; -moz-animation: balloon2 3s ease-in-out infinite; -o-animation: balloon2 3s ease-in-out infinite; animation: balloon2 3s ease-in-out infinite; } .balloon > div:nth-child(6):before { color: rgba(242, 194, 58, 0.9); } .balloon > div:before { color: rgba(182, 15, 97, 0.9); position: absolute; bottom: -11px; left: 52px; content:"▲"; font-size: 1em; } span { font-size: 4.8em; color: white; position: relative; top:.........完整代码请登录后点击上方下载按钮下载查看
网友评论0