虚拟键盘效果

代码语言:html

所属分类:布局界面

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


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

<style>
@import url("https://fonts.googleapis.com/css?family=Ubuntu:500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

body {
  background: #F2F7FB;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}
.container__content {
  width: 60%;
}

.textbox {
  width: 100%;
  resize: none;
  background: linear-gradient(145deg, #F2F7FB, #E9F2FB);
  box-shadow: inset 8px 8px 15px #D9E3EC;
  border-radius: 12px;
  border: none;
  overflow: auto;
  padding: 20px;
  outline: none;
  margin: 50px 0;
}

.keyboard {
  padding: 25px;
  background: linear-gradient(145deg, #F2F7FB, #E9F2FB);
  box-shadow: 8px 8px 15px #D9E3EC;
  border-radius: 12px;
  min-width: 750p.........完整代码请登录后点击上方下载按钮下载查看

网友评论0