交互动态走光效果键盘布局

代码语言:html

所属分类:动画

代码描述:交互动态走光效果键盘布局

代码标签: 效果 键盘 布局

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
body {
  background-color: #625499;
  display: table-cell;
  height: 100vh;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  width: 100vw;
}

.case {
  background-color: #463973;
  border-color: #2e2640;
  border-radius: 5px;
  border-style: solid;
  border-width: 8px 10px 15px 10px;
  display: inline-grid;
  grid-template-columns: repeat(36, 1fr);
  grid-template-rows: repeat(5, 1fr);
  height: 17em;
  padding: 5px;
  user-select: none;
  width: 60em;
}

.key {
  border-color: #382e59 #2e2640;
  border-radius: 2px;
  border-style: solid;
  border-width: 3px 5px 8px 5px;
  color: #bbadd9;
  display: block;
  font-family: sans-serif;
  font-size: 9px;
  font-weight: 800;
  grid-column-end: span 2;
  margin: 3px;
  padding-top: 2px;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: all 50ms ease-out;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0