css实现花瓣式loading加载动画效果代码
代码语言:html
所属分类:加载滚动
代码描述:css实现花瓣式loading加载动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html> <html> <head> <meta charset="utf-8"> <style> @charset "utf-8"; /* DaTouWang URL: www.datouwang.com */ body { background: #161B29; margin: 0 auto; height: 100%; width: 100%; } .container { width: 40vw; height: 40vw; left: 0; right: 0; top: 0; bottom: 0; margin: auto; } .common { height: 5vw; max-height: 100%; overflow: auto; width: 2vw; margin: auto; max-width: 100%; position: absolute; background-color: ; border-radius: 0vw 10vw 0vw 10vw; box-shadow: inset 0vw 0vw 0vw .1vw #E645D0, 0vw 0vw 1.5vw 0vw #E645D0; } .one { transform: rotate(45deg); left: 0; right: 0; top: 0; bottom: 7.5vw; } .two { transform: rotate(90deg); left: 5.5vw; right: 0; top: 0; bottom: 5.5vw; } .three { transform: rotate(135deg); left: 7.5vw; right: 0; top: 0; bottom: 0; } .four { transform: rotate(180deg); left: 5.5vw; right: 0; top: 5.5vw; bottom: 0; } .five { transform: rotate(225deg); left: 0; right: 0; top: 7.5vw; bottom: 0; } .six { transform: rotate(270deg); left: 0; right: 5.5vw; top: 5.5vw; bottom: 0; } .seven { transform: rotate(315deg); left: 0; right: 7.5vw; top: 0; bottom: 0; } .eight { transform: rotate(360deg); left: 0; right: 5.5vw; top: 0; bottom: 5.5vw; } .bar { width: 12vw; height: .25vw; left: 0; right: 0; top: 16vw; bottom: 0; margin: auto; overflow: hidden; background: #E645D0; } .progress { width: 12vw; height: .5vw; left: 0; right: 0; top: 0; bottom: 0; margin: auto; overflow: hidden; background: #17E1E6; } .one { animation: one 1s ease infinite; -moz-animation: one 1s ease infinite; /* Firefox */ -webkit-animation: one 1s ease infinite; /* Safari and Chrome */ -o-animation: one 1s ease infinite; /* Opera */ } @keyframes one { 0%, 100% {} 50% { background: ; box-shadow: inset 0vw 0vw 0vw .1vw #17E1E6, 0vw 0vw 1.5vw 0vw #17E1E6; } } .two { animation: two 1s .125s ease infinite; -moz-animation: two 1s .125s ease infinite; /* Firefox */ -webkit-animation: two 1s .125s ease infinite; /* Safari and Chrome */ -o-animation: two 1s .125s ease infinite; /* Opera */ } @keyframes two { 0%, 100% {} 50% { background: ; box-shadow: inset 0vw 0vw 0vw .1vw #17E1E6, 0vw 0vw 1.5vw 0vw #17E1E6; } } .three { animation: three 1s .25s ease infinite; -moz-animation: three 1s .25s ease infinite; /* Firefox */ -webkit-animation: three 1s .25s ease infinite; /* Safari and Chrome */ -o-animation: three 1s .25s ease infinite; /* Opera */ } @keyframes three { 0%, 100% {} 50% { background: ; box-shadow: inset 0vw 0vw 0vw .1vw #17E1E6, 0vw 0vw 1.5vw 0vw #17E1E6; } } .four { animation: four 1s .375s ease infinite; -moz-animation: four 1s .375s ease infinite; /* Firefox */ -webkit-animation: four 1s .375s ease infinite; /* Safari and Chrome */ -o-animation: four 1s .375s ease infinite; /* Opera */ } @keyframes four { 0%, 100% {} 50% { background: ; box-shadow: inset 0vw 0vw 0vw .1vw #17E1E6, 0vw 0vw 1.5vw 0vw #17E1E6; } } .five { animation: five 1s .5s ease infinite; -moz-animation: five 1s .5s ease infinite; /* Firefox */ -webkit-animation: five 1s .5s ease infinite; /* Safari and Chrome */ -o-animation: five 1s .5s ease infinite; /* Opera */ } @key.........完整代码请登录后点击上方下载按钮下载查看
网友评论0