jquery+css实现黑色时间代码

代码语言:html

所属分类:其他

代码描述:jquery+css实现黑色时间代码

代码标签: jquery css 黑色 时间 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
<style>
.partial {
  display: inline-block;
  margin-right: 1rem;
  padding: 1rem;
  font-size: 5rem;
  color: #fff;
  text-shadow: 0 0 7px #111;
  background-color: #333;
  border: 3px solid #222;
  box-shadow: 0 0 0.5rem #000;
  border-radius: 10%;
}

.animated {
  animation: animate 500ms;
}

@keyframes animate {
  0% {
    background-color: #666;
    border: 3px solid #333;
    box-shadow: 0 0 0.5rem #11.........完整代码请登录后点击上方下载按钮下载查看

网友评论0