div+css实现自适应可调色更换主题色的设置页面ui效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现自适应可调色更换主题色的设置页面ui效果代码
代码标签: div css 自适应 可调色 更换 主题色 设置 页面 ui
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> @import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600,700,800,900|Barlow:300,400,500,600,700,800,900&display=swap"); .about { position: fixed; z-index: 10; bottom: 10px; right: 10px; width: 40px; height: 40px; display: flex; justify-content: flex-end; align-items: flex-end; transition: all 0.2s ease; } .about .bg_links { width: 40px; height: 40px; border-radius: 100%; display: flex; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.2); border-radius: 100%; backdrop-filter: blur(5px); position: absolute; } .about .logo { width: 40px; height: 40px; z-index: 9; background-image: url(//repo.bfw.wiki/bfwrepo/icon/5d834e33872ba.png); background-size: 50%; background-repeat: no-repeat; background-position: 10px 7px; opacity: 0.9; transition: all 1s 0.2s ease; bottom: 0; right: 0; } .about .social { opacity: 0; right: 0; bottom: 0; } .about .social .icon { width: 100%; height: 100%; background-size: 20px; background-repeat: no-repeat; background-position: center; background-color: transparent; display: flex; transition: all 0.2s ease, background-color 0.4s ease; opacity: 0; border-radius: 100%; } .about .social.portfolio { transition: all 0.8s ease; } .about .social.portfolio .icon { background-image: url(//repo.bfw.wiki/bfwrepo/icon/5d834e6d3b5e0.png); } .about .social.dribbble { transition: all 0.3s ease; } .about .social.dribbble .icon { background-image: url(//repo.bfw.wiki/bfwrepo/icon/5d834e7ee3796.png); } .about .social.linkedin { transition: all 0.8s ease; } .about .social.linkedin .icon { background-image: url(//repo.bfw.wiki/bfwrepo/icon/5d834ed0c6986.png); } .about:hover { width: 105px; height: 105px; transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65); } .about:hover .logo { opacity: 1; transition: all 0.6s ease; } .about:hover .social { opacity: 1; } .about:hover .social .icon { opacity: 0.9; } .about:hover .social:hover { background-size: 28px; } .about:hover .social:hover .icon { background-size: 65%; opacity: 1; } .about:hover .social.portfolio { right: 0; bottom: calc(100% - 40px); transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65); } .about:hover .social.portfolio .icon:hover { background-color: #698fb7; } .about:hover .social.dribbble { bottom: 45%; right: 45%; transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65); } .about:hover .social.dribbble .icon:hover { background-color: #ea4c89; } .about:hover .social.linkedin { bottom: 0; right: calc(100% - 40px); transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65); } .about:hover .social.linkedin .icon:hover { background-color: #0077b5; } :root { --m-01: #8866e9; --m-02: #5e38cc; --m-03: #b1b2d6; --g-01: linear-gradient(95deg, var(--m-01), var(--m-02)); --l: 18px; --m: 14px; --s: 14px; } [data-size=large] { --l: 20px; --m: 16px; --s: 16px; } [data-size=small] { --l: 16px; --m: 12px; --s: 10px; } [data-theme=green] { --m-01: #04b9ae; --m-02: #027b77; --m-03: #a3cac7; --g-01: linear-gradient(95deg, var(--m-01), var(--m-02)); } [data-theme=blue] { --m-01: #00a1e5; --m-02: #006bbb; --m-03: #b6d7e4; --g-01: linear-gradient(95deg, var(--m-01), var(--m-02)); } [data-theme=pink] { --m-01: #d251a6; --m-02: #bb1b85; --m-03: #dab7ce; --g-01: linear-gradient(95deg, var(--m-01), var(--m-02)); } [data-theme=orange] { --m-01: #ff7b52; --m-02: #e55426; --m-03: #e2c5bb; --g-01: linear-gradient(95deg, var(--m-01), var(--m-02)); } h1, h2, h3, h4, h5, h6, p, ul, li, button, a, i, input, body { margin: 0; padding: 0; list-style: none; border: 0; -webkit-tap-highlight-color: transparent; text-decoration: none; color: inherit; } h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus, p:focus, ul:focus, li:focus, button:focus, a:focus, i:focus, input:focus, body:focus { outline: 0; } body { margin: 0; padding: 0; height: auto; font-family: "Barlow", sans-serif; background: #292a3a; overflow-x: hidden; } .logo { position: fixed; z-index: 5; bottom: 10px; right: 10px; width: 40px; height: 40px; border-radius: 100%; display: flex; jus.........完整代码请登录后点击上方下载按钮下载查看
网友评论0