JSDM

HTML

6
 
1
<div id="scrolldown">
2
  <p>scroll</p>
3
  <div class="mouse">
4
    <span><p></p></span>
5
  </div>
6
</div>
!

CSS

xxxxxxxxxx
47
 
1
#scrolldown {
2
  bottom: 40px;
3
  height: 100px;
4
  margin-left: -50px;
5
  position: absolute;
6
  left: 50%;
7
  text-align: center;
8
  width: 100px;
9
  z-index: 100;
10
}
11
#scrolldown p {
12
  font: 700 0.7em/1em 'Avenir',sans-serif;
13
  animation-duration: 2s;
14
  animation-fill-mode: both;
15
  animation-iteration-count: infinite;
16
  animation-name: scroll;
17
  color: #000;
18
}
19
#scrolldown > p {
20
  text-transform: uppercase;
21
  text-indent: 3px;
22
}
23
.mouse {
24
  border: 2px solid #000;
25
  border-radius: 13px;
26
  display: block;
27
  height: 46px;
28
  left: 50%;
29
  margin: 10px 0 0 -13px;
30
  position: absolute;
31
  width: 26px;
32
}
33
.mouse span {
34
  display: block;
35
  font-size: 1.5em;
36
  margin: 6px auto;
37
}
38
@keyframes scroll {
39
  0% {
40
    opacity: 1;
41
    transform: translateY(0px);
42
  }
43
  100% {
44
    opacity: 0;
45
    transform: translateY(10px);
46
  }
47
}
!
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

1
 
1
!
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

  1. 暂无文件
拖动文件到上面的区域或者:
加载中 ..................