- <body>
- <div id = "content">
- <div id = "top">
- <div id="time">00:00:000div>
- div>
- <div id = "bottom">
- <div id = "btn_start">开始div>
- <div id = "btn_stop">停止div>
- <div id = "btn_reset">重置div>
- div>
- div>
- body>
-
- *{
- margin: 0;
- padding: 0;
- }
- html,body{
- width: 100%;
- height: 100%;
- }
- #content{
- width: 100%;
- height: 100%;
- position: relative;
- background:url("img/1.cpp.jpg");
- background-size: 100% 100%;
- }
- #top{
- width:100%;
- height: 250px;
- position: relative;
- }
- #time{
- font-size: 100px;
- background-color: gray;
- color: white;
- position: absolute;
- top: 50%;
- margin-top:-60px ;
- left: 50%;
- margin-left: -220px;
- border-radius: 20px;
- }
- #bottom{
- width:100%;
- height: 400px;
- position: relative;
- top: 100px;
- }
- #btn_start{
- font-size: 50px;
- background-color: red;
- width: 20%;
- color: white;text-align: center;
- position: absolute;
- top: 20px;
- left: 40%;
- border-radius: 30px;
- }
- #btn_stop{
- font-size: 50px;
- background-color: orange;
- width: 20%;
- color: white;text-align: center;
- position: absolute;
- top: 150px;
- left: 40%;
- border-radius: 30px;
- }
- #btn_reset{
- font-size: 50px;
- background-color: greenyellow;
- width: 20%;
- color: white;text-align: center;
- position: absolute;
- top: 280px;
- left: 40%;
- border-radius: 30px;
- }
-