html & css 入门
不是从基本语法学起,而是从一个画八卦图的案例来学习相关语法。
画八卦图,需要先画一个圆,然后圆内部,需要画2个半圆,一个半圆为黑色,一个半圆为白色。然后在圆内部上半部分在画一个圆,居中,为黑色,同理下半圆也画个圆,为白色。在用同样的原理画2个小圆,居中。需要用到绝对定位。如果手机端看,需要用@media(max-width:500px){...},使用不同的尺寸
HTML5和css3代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
box-sizing: border-box;
border: 0px;
padding: 0px;
}
body {
background: #ccc;
}
@keyframes x {
/* 转动从0度到360度旋转 */
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#八卦 {
height: 400px;
width: 400px;
border-radius: 200px;
position: relative;
/* 会把超出部分隐藏 */
overflow: hidden;
box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.02);
/* css3动画 */
animation: x 10s linear infinite;
}
/* 定义尺寸长度小于500,使用下面的尺寸,适配手机 */
@media(max-width:500px) {
#八卦 {
height: 200px;
width: 200px;
border-radius: 50%;
}
}
#八卦>div:first-child {
width: 50%;
height: 100%;
position: absolute;
left: 0;
background-color: black;
}
#八卦>div:nth-child(2) {
width: 50%;
height: 100%;
position: absolute;
right: 0;
background-color: white;
}
#八卦>div:nth-child(3) {
width: 50%;
height: 50%;
border-radius: 50%;
position: absolute;
left: 50%;
margin-left: -100px;
background: black;
}
@media(max-width:500px) {
#八卦>div:nth-child(3) {
width: 50%;
height: 50%;
border-radius: 50%;
margin-left: -25%;
}
}
#八卦>div:nth-child(4) {
width: 50%;
height: 50%;
border-radius: 50%;
position: absolute;
left: 50%;
bottom: 0px;
margin-left: -100px;
background: white;
}
@media(max-width:500px) {
#八卦>div:nth-child(4) {
width: 100px;
height: 100px;
border-radius: 50%;
margin-left: -50px;
}
}
#八卦>div:nth-child(5) {
width: 50px;
height: 50px;
border-radius: 50%;
top: 75px;
position: absolute;
left: 50%;
margin-left: -25px;
background: white;
}
@media(max-width:500px) {
#八卦>div:nth-child(5) {
width: 25px;
height: 25px;
border-radius: 50%;
margin-left: -12.5px;
top: 37.5px;
}
}
#八卦>div:nth-child(6) {
width: 50px;
height: 50px;
border-radius: 50%;
position: absolute;
left: 50%;
margin-left: -25px;
background: black;
bottom: 75px;
}
@media(max-width:500px) {
#八卦>div:nth-child(6) {
width: 25px;
height: 25px;
border-radius: 50%;
margin-left: -12.5px;
bottom: 37.5px;
}
}
#八卦-wrapper {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#八卦-des {
margin-top: 1em;
}
</style>
</head>
<body>
<div id="八卦-wrapper">
<div id="八卦">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="八卦-des">道可道,非常道</div>
</div>
</body>
</html>
接下去就是要部署发布,最简单可以使用github的仓库,创建index.html文件,使用setting中网页的功能,访问网站,就能看到对应的图片了。