div+css布局实现月兔月亮中秋之夜效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css布局实现月兔月亮中秋之夜效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> * { padding: 0; margin: 0; box-sizing: border-box; } body { background: linear-gradient(to right, #1e3c72, #2a5298); justify-content: center; align-items: center; display: flex; height: 100vh; } .circle { width: 450px; height: 450px; position: relative; background: #1a3469; box-shadow: 0 50px 40px rgba(0,0,0,0.5), 0 20px 10px rgba(0,0,0,0.3); border-radius: 100%; overflow: hidden; } .moon { background: #ffa62b; position: absolute; width: 180px; height: 180px; top: 18%; left: 40%; border-radius: 100%; } .moon2 { background: #ffe05d; position: absolute; width: 160px; height: 160px; top: 19%; left: 44%; border-radius: 100%; } .crater1 { position.........完整代码请登录后点击上方下载按钮下载查看
网友评论0