jquery+css实现电池电量进度显示效果代码
代码语言:html
所属分类:布局界面
代码描述:jquery+css实现电池电量进度显示效果代码,点击加减可进行进度操作。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
background: #000;
}
#hint {
color: #CCC;
font-family: Arial, sans-serif;
font-size: 19px;
line-height: 30px;
text-align: center;
letter-spacing: 1px;
display: none;
position: relative;
z-index: 10;
opacity: 0.75;
background: #000;
}
#buttons {
position: absolute;
top: 50%;
left: 50%;
margin-left: -250px;
margin-top: -60px;
font-size: 73px;
color: #FFF;
width: 500px;
line-height: 120px;
vertical-align: middle;
}
#buttons .more,
#buttons .less {
-moz-user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
cursor: pointer;
opacity: 0.5;
}
#buttons .more:hover,
#buttons .less:hover {
opacity: 1;
}
#buttons .less {
float: left;
}
#buttons .less:active {
color: #C00;
}
#buttons .more {
float: right;
}
#buttons .more:active {
color: #0C0;
}
#battery {
position: absolute;
left: 50%;
top: 50%;
width: 250px;
height: 120px;
margin-left: -142px;
margin-top: -60px;
border-radius: 0.33333333px;
border-left: 2px solid rgba(255, 255, 255, 0.2);
border-right: 2px solid rgba(255, 255, 255, 0.2);
background-image: linear-gradient(to right, transparent 5%, #316d08 5%, #316d08 7%, #60b939 8%, #60b939 10%, #51aa31 11%, #51aa31 60%, #64ce11 61%, #64ce11 63%, #255405 63%, black 68%, black 95%, transparent 95%), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 4%, rgba(255, 255, 255, 0.2) 7%, rgba(255, 255, 255, 0.2) 14%, rgba(255, 255, 255, 0.8) 14%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.4) 86%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0.1) 92%, rgba(255, 255, 255, 0.1) 95%, rgba(255, 255, 255, 0.5) 98%);
}
#battery:before {
display: block;
position: absolute;
content: '';
width: 12px;
height: 55px;
right: -14px;
top: 32px;
border-top-right-radius: 6px 10px;
border-bottom-right-radius: 6px 10px;
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0.8) 14%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.4) 86%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0.1) 92%, rgba(255, 255, 255, 0.1) 95%, rgba(255, 255, 255, 0.5) 98%);
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0.8) 14%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.4) 86%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0.1) 92%, rgba(255, 255, 255, 0.1) 95%, rgba(255, 255, 255, 0.5) 98%);
background-image: -o-linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0.8) 14%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.4) 86%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0.1) 92%, rgba(255, 255, 255, 0.1) 95%, rgba(255, 255, 255, 0.5) 98%);
background-image: linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0.8) 14%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 4.........完整代码请登录后点击上方下载按钮下载查看
网友评论0