div+css布局实现拍照按钮点击效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css布局实现拍照按钮点击效果代码

代码标签: div css 布局 拍照 按钮 点击

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

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />
 <style>
body{
  padding: 140px;
}
button {
 
 position: relative;
 height: 50px;
 padding: 0 30px;
 border: 2px solid #000;
 background: #e8e8e8;
 user-select: none;
 white-space: nowrap;
 transition: all .05s linear;
 font-family: inherit;
}

button:before, button:after {
 content: "";
 position: absolute;
 background: #e8e8e8;
 transition: all .2s linear;
}

button:before .........完整代码请登录后点击上方下载按钮下载查看

网友评论0