日历与时钟的完美融合效果
代码语言:html
所属分类:布局界面
代码描述:日历与时钟的完美融合效果,点击不放就会展开时钟
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,900|Open+Sans+Condensed:300,300italic,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<style>
/* -- usable codes start -- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
text-decoration: none;
list-style: none;
}
img {
width: 100%
}
.anim04c {
-webkit-transition: all .4s cubic-bezier(.5, .35, .15, 1.4);
transition: all .4s cubic-bezier(.5, .35, .15, 1.4);
}
html,
body {
width: 100%;
height: 100%;
font-family: 'Source Sans Pro', sans-serif;
background: #eee;
color: #666;
}
body {
overflow-x: hidden;
overflow-y: auto;
}
/*-----*/
.outer {
position: relative;
top: 50%;
z-index: 1;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
cursor: pointer;
}
/*-----*/
.signboard {
width: 100px;
height: 100px;
margin: auto;
color: #fff;
border-radius: 10px;
}
/*-----*/
.front {
position: absolute;
top: 0;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0