纯css实现巧克力checkbox点击效果

代码语言:html

所属分类:表单美化

代码描述:纯css实现巧克力checkbox点击效果

代码标签: 巧克力 checkbox 点击 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');

* {
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    height: 100%;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    height: 25%;
    font-family: Cookie;
    font-size: 48pt;
    text-align: center;
}

.switch {
    --cookie.........完整代码请登录后点击上方下载按钮下载查看

网友评论0