div+css实现海浪波纹动画效果代码
代码语言:html
所属分类:动画
代码描述:div+css实现海浪波纹动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { background: #fff; height: 100%; margin: 0; } :root { --offset: -40px; } :nth-child(0) { --nth: 0; } :nth-child(1) { --nth: 1; } :nth-child(2) { --nth: 2; } :nth-child(3) { --nth: 3; } :nth-child(4) { --nth: 4; } :nth-child(5) { --nth: 5; } :nth-child(6) { --nth: 6; } :nth-child(7) { --nth: 7; } :nth-child(8) { --nth: 8; } :nth-child(9) { --nth: 9; } :nth-child(10) { --nth: 10; } :nth-child(11) { --nth: 11; } :nth-child(12) { --nth: 12; } :nth-child(13) { --nth: 13; } :nth-child(14) { --nth: 14; } :nth-child(15) { --nth: 15; } :nth-child(16) { --nth: 16; } :nth-child(17) { --nth: 17; } :n.........完整代码请登录后点击上方下载按钮下载查看
网友评论0