颜色选择框选择器效果
代码语言:html
所属分类:选择器
代码描述:颜色选择框选择器效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> /* Inspired by the branding over at Help Scout https://style.helpscout.com/visual-elements/#color */ html { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial; font-size: 15px; webkit-font-smoothing: antialiased; background-color: white; width: 100%; } .bg { width: 100%; } div { cursor: pointer; } .container { display: flex; flex-direction: wrap; justify-content: center; position: relative; top: 100px; } .inside { display: flex; flex-direction: column; box-shadow: -1px 13px 25px -5px rgba(0,0,0,0.13); } .item { display: flex; flex-direction: row; justify-content: space-between; width: 250px; line-height: 1; padding-right: 20px; padding-left: 20px; } .header { background-color: #1292EE; border-radius: 5px 5px 0px 0px; color: white; } .second { background-color: #F3FBFF; color: #002651; transition-timing-function: cubic-bezier(0.42, 0, 1, 1); transition-duration: .1s; } .third { background-colo.........完整代码请登录后点击上方下载按钮下载查看
网友评论0