bootstrap实现可设置控制的秒表倒计时器代码
代码语言:html
所属分类:其他
代码描述:bootstrap实现可设置控制的秒表倒计时器代码,使用jquery实现控制。
代码标签: bootstrap 设置 控制 秒表 倒计时 器 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.3.3.4.css">
<style>
@import 'https://fonts.googleapis.com/css?family=Baumans';
html, html body, html .m-wrap {
width: 100%;
height: 100%;
}
html .tx, html .m-wrap .o-watch-wrap .o-controllers .in-btn, html .m-wrap .o-watch-wrap .watch-ui .o-ring .o-timer, html .m-wrap .o-watch-wrap .watch-ui .o-ring .t-options .t-options-time, html .m-wrap .o-watch-wrap .watch-ui .o-ring .ring-wrap, html .m-wrap .o-watch-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
html .t-center, html .m-wrap .o-watch-wrap .watch-ui .o-ring .o-timer, html .m-wrap .o-watch-wrap .watch-ui .o-ring .t-options .t-options-time {
text-align: center;
}
html .m-wrap {
color: #EDEDEF;
background-color: #55EB72;
}
html .m-wrap .o-watch-wrap {
width: 350px;
height: 400px;
background-color: #56259E;
background: -webkit-linear-gradient(to bottom, #7e49c8, #56259E 50%);
background: -o-linear-gradient(to bottom, #7e49c8, #56259E 50%);
background: -moz-linear-gradient(to bottom, #7e49c8, #56259E 50%);
background: linear-gradient(to bottom, #7e49c8, #56259E 50%);
border-radius: 25px;
-webkit-box-shadow: 0px 0px 5px 0px black;
-moz-box-shadow: 0px 0px 5px 0px black;
box-shadow: 0px 0px 5px 0px black;
border: 3px solid;
}
html .m-wrap .o-watch-wrap .menu-open .t-options {
opacity: 1 !important;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0