css布局实现一个收音机效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现一个收音机效果代码

代码标签: 一个 收音机 效果

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


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

<head>

  <meta charset="UTF-8">
  
  
  
  
<style>
html,
body {
  height: 100%;
}

body {
  background: #F6BAF1;  
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 150px 50px 50px 50px;
  justify-content: center;
  align-items: center;
}

.wrapper {
  background-color: #78F8DD;
  border: 10px solid #F5F56D;
  max-width: 400px;
  height: 270px;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 100000;
}

.vintage {
  position: sticky;
  background-color: black;
  margin: 0 0 0 220px;
  width: 50px;
  height: 30px;
  border-radius: 5%;

  overflow: hidden;
}

.antenna {
  position: absolute;
  background: #F5F56D;
  height: 10px;
  bottom: 100%;
  right: 20px;
  width: 80%;
  margin: 0;
  transform: rotate(15deg);
  border-radius: 50% 0 0 0;
  transform-origin: 100% 100%;
}

.button-on {
  position: absolute;
  background-color: black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 10px 0 0 10px;
}

.button-off {
  position: absolute;
  background-color: red;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 1px 0 0 30px;
}

.middle-bar {
  position: absolute;
  background-color: #C571F8;
  width: 190px;
  height: 50px;
  margin: 5px 0 0 60px;
  border: 5px solid black;
}

.middle-box {
  background-color: deeppink;
  width: 120px;
  height: 50px;
  margin: 45px 0 0 135px;
  border: 5px solid black;
}

.line {
  background-color: black;
  width: 190px;
  height: 10px;
  margin: 5px 0 0 0;
}

.top-tune {
  height: 80px;
  border-bottom: 10px solid #1a1a1a;
}

.speaker {
  overflow: hidden;
  padding: 15px;
  margin: -100px 0 50px 0;
}

.speaker-main {
  background-color: black;
  float: right;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 15px solid #7D8784;
}

.speaker-inside {
  background-color: black;
  float: left;
  height: 80px;
  width: 80px;
  border-radius: 5.........完整代码请登录后点击上方下载按钮下载查看

网友评论0