CSS3_边框 border 详解_一个 div 的阴阳图
(面试题)
怎么样通过 CSS 画一个三角形:
1. 元素的 width 和 height 设置为 0
2. 边框 足够大
3. 需要的三角形的部分, border-top-color 设置为 有色
4. 不需要的部分 border-right-color,border-bottom-color,border-left-color,设置为 透明色
color: rgba(0,0,0,0); // 或者
color: #0000; // 或者
color: transparent;
圆角边框(支持所有元素,无论块元素,还是行内元素)
- 尽管,border-radius 将 元素 变成了圆形,但是里面的文本子元素,仍旧沿着矩形盒子进行排列。
- CSS3 提供的特性: 尽管盒子的外形和位置发生了变换,但是元素在文档流中的位置是不变的
- border-radius: 50%; // 百分比参照盒子自身。
- 当 width = height 时,会画一个圆形。
- 当 width 不等于 height 时,会画一个椭圆形。
- 椭圆形
#box {
width: 300px;
height: 200px;
border-radius: 150px/100px; // x 轴半径 / y 轴半径
}
- 椭圆形
- 语法:
#box {
border-radius: 30px 10px 50px 0; // 左上 右上 右下 左下
border-radius: 30px 10px 50px;
border-radius: 30px 10px;
border-radius: 30px;
}
- 用 CSS 画一个半圆
#box {
width: 100px;
hright: 200px; border-radius: 0 100% 100% 0;
// border-radius: 100% 0 0 100%;
} #box {
width: 200px;
hright: 100px; border-radius: 100% 100% 0 0 ;
// border-radius: 0 0 100% 100%;
}
- 用 CSS 画一个扇形
#box {
width: 100px;
hright: 100px; border-radius: 100% 0 0 0;
// border-radius: 0 100% 0 0 0;
// border-radius: 0 0 100% 0;
// border-radius: 0 0 0 100%;
}
- 用 CSS 画一个太极图
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>太极图</title>
<style type="text/css">
#test_box {
width: 200px;
height: 200px;
border-radius: 50%;
margin: 30px auto; background-color: red;
position: relative;
} #test_box #left_box,
#test_box #right_box {
width: 100px;
height: 200px; float: left;
} #test_box #left_box {
background-color: #000;
border-radius: 100px 0 0 100px;
} #test_box #right_box {
background-color: #fff;
border-radius: 0 100px 100px 0;
} #test_box #top_box,
#test_box #bottom_box {
width: 100px;
height: 100px;
border-radius: 50%; position: absolute;
left: 50%;
margin-left: -50px;
} #test_box #top_box {
top: 0;
background-color: #000;
} #test_box #bottom_box {
bottom: 0;
background-color: #fff;
} #test_box #top_box #white_dot,
#test_box #bottom_box #black_dot {
width: 20px;
height: 20px;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
} #test_box #top_box #white_dot {
background-color: #fff;
} #test_box #bottom_box #black_dot {
background-color: #000;
}
</style>
</head> <body> <div id="test_box">
<div id="left_box">
</div> <div id="right_box">
</div> <div id="top_box">
<div id="white_dot"></div>
</div> <div id="bottom_box">
<div id="black_dot"></div>
</div>
</div> </body>
</html>
只用一个 <div> 画太极阴阳图
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>神分阴阳</title> <style type="text/css">
body {
width: 100%;
color: #000;
background: #96b377;
font: 14px Helvetica, Arial, sans-serif;
}
#test_box {
width: 100px;
height: 200px;
border-right: 100px solid #fff;
border-radius: 50%;
margin: 30px auto; background-color: #000;
position: relative;
top: 0px;
left: 0px;
} #test_box:before {
content: ""; width: 20px;
height: 20px; border: 40px solid #000;
border-radius: 50%;
background-color: #fff; position: absolute;
top: 0px;
left: 100%;
margin-left: -50px; /* 左右 上下 模糊 颜色 */
box-shadow: 4px 0px 4px #a66fe2;
} #test_box:after {
content: ""; width: 20px;
height: 20px; border: 40px solid #fff;
border-radius: 50%;
background-color: #000; /* 左右 上下 模糊 颜色 */
box-shadow: -5px 0px 4px #c4d0a7; position: absolute;
bottom: 0px;
left: 100%;
margin-left: -50px;
}
</style>
</head> <body> <div id="test_box"> </div> </body>
</html>
- 弧形凹陷 评论框
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>弧形凹陷 评论框</title> <style type="text/css">
body {
background-color: #96b377;
}
#test_box {
width: 800px;
height: 300px;
margin: 300px auto 0px;
border: 1px solid red;
background-color: skyblue; position: relative;
top: 0px;
left: 0px;
} #test_box #arc {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #96b377;
border: 1px solid red; position: absolute;
top: -70px;
left: 70px;
} #test_box #arc #mask {
width: 102px;
height: 100px;
background-color: #96b377; position: absolute;
top: -32px;
left: -1px;
} #test_box #arc #circle_login {
width: 70px;
height: 70px;
border-radius: 50%; background-color: #ccc;
text-align: center;
line-height: 70px;
font-size: 24px; position: absolute;
z-index: 2;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
} </style>
</head> <body> <div id="test_box">
<div id="arc">
<div id="mask"></div>
<div id="circle_login">
登录
</div>
</div>
</div> </body>
</html>
- 四叶草 旋转 初探 CSS3 动画
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>四叶草旋转 初探 CSS 动画</title> <style type="text/css">
body {
width: 100%;
color: #000;
background: #96b377;
font: 14px Helvetica, Arial, sans-serif;
} #test_box {
width: 624px;
height: 624px;
margin: 60px auto;
list-style: none; animation: turnAround 1s linear infinite;
} @keyframes turnAround {
from {transform: rotate(0deg)}
to {transform: rotate(360deg)}
} #test_box li {
float: left;
width: 300px;
height: 300px;
margin: 5px; border: 1px solid red;
background-color: #eee;
} #test_box li:nth-child(1),
#test_box li:nth-child(4) {
border-radius: 0 230px 0 230px;
} #test_box li:nth-child(2),
#test_box li:nth-child(3) {
border-radius: 230px 0 230px 0;
} </style>
</head> <body> <ul id="test_box">
<li></li>
<li></li>
<li></li>
<li></li>
</ul> </body>
</html>
CSS3_边框 border 详解_一个 div 的阴阳图的更多相关文章
- css3(border-radius)边框圆角详解(转)
css3(border-radius)边框圆角详解 (2014-05-19 16:16:29) 转载▼ 标签: divcss html it css3 分类: 网页技术 传统的圆角生成方案,必须使用多 ...
- Java 正则表达式详解_正则表达式
body{ font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI& ...
- UML类图详解_关联关系_一对多
对于一对多的示例,可以想象一个账户可以多次申购.在申购的时候没有固定上限,下限为0,那么就可以使用容器类(container class)来搞,最常见的就是vector了. 下面我们来看一个“一对多” ...
- UML类图详解_关联关系_多对一
首先先来明确一个概念,即多重性.什么是多重性呢?多重性是指两个对象之间的链接数目,表示法是“下限...上限”,最小数据为零(0),最大数目为没有设限(*),如果仅标示一个数目级上下限相同. 实际在UM ...
- (5)ps详解 (每周一个linux命令系列)
(5)ps详解 (每周一个linux命令系列) linux命令 ps详解 引言:今天的命令是用来看进程状态的ps命令 ps 我们先看man ps ps - report a snapshot of t ...
- (4)top详解 (每周一个linux命令系列)
(4)top详解 (每周一个linux命令系列) linux命令 top详解 引言:今天的命令是用来看cpu信息的top top 我们先看man top top - display Linux pro ...
- (3)lscpu详解 (每周一个linux命令系列)
(3)lscpu详解 (每周一个linux命令系列) linux命令 lscpu详解 引言:今天的命令是用来看cpu信息的lscpu lscpu 我们先看man lscpu display infor ...
- (2)free详解 (每周一个linux命令系列)
(2)free详解 (每周一个linux命令系列) linux命令 free详解 引言:今天的命令是用来看内存的free free 换一个套路,我们先看man free中对free的描述: Displ ...
- css3(border-radius)边框圆角详解
传统的圆角生成方案,必须使用多张图片作为背景图案.CSS3的出现,使得我们再也不必浪费时间去制作这些图片了,只需要border-radius属性,支持浏览器IE 9.Opera 10.5.Safari ...
随机推荐
- Entity Framework入门教程(5)---EF中的持久化场景
EF中的持久性场景 使用EF实现实体持久化(保存)到数据库有两种情况:在线场景和离线场景. 1.在线场景 在线场景中,context是同一个上下文实例(从DbContext派生),检索和保存实体都通过 ...
- HDU 5984(求木棒切割期望 数学)
题意是给定一长为 L 的木棒,每次任意切去一部分直到剩余部分的长度不超过 D,求切割次数的期望. 若木棒初始长度不超过 D,则期望是 0.000000: 设切割长度为 X 的木棒切割次数的期望是 F( ...
- 17、 利用扇贝网:https://www.shanbay.com/, 做个测单词的小工具。
先说下,我可以说完全没有看题目要求,我只看了下扇贝网的单词测试工具就开始编码了,写出来的代码尽可能的模仿了网站上的效果. 因为把问题搞复杂了,在这个练习上耽误了很长时间,最后都不想写了,所以代码有些混 ...
- Pandas时间处理的一些小方法
一.以下有两种方式可以创建一个Timestamp对象: 1. Timestamp()的构造方法 import pandas as pd from datetime import datetime as ...
- phpcms V9首页、列表页以及内容页调用标签
1.页面标题:{$title} 2.发表时间:{$inputtime} 3.内容来源:{$copyfrom} 4.文章内容:{$content} 5.缩略图地址:{$thumb} 6.组图列表: {l ...
- ModuleNotFoundError: No module named '_sqlite3' -- python2.7 问题
ModuleNotFoundError: No module named '_sqlite3' 运行python 工程出现上面这个问题,以为python安装中缺少这个依赖, 注python 2.7 首 ...
- 网络流Dinic(本篇介绍最大流)
前言:看到网上Dinic和ISAP的比较,多数人认为ISAP更快,不容易爆栈.当然,也有少数人认为,在多数情况下,Dinic比较稳定.我认为Dinic的思路比ISAP更简明,所以选择了Dinc算法 介 ...
- CF1119C Ramesses and Corner Inversion
题目地址:CF1119C Ramesses and Corner Inversion 将两个矩阵异或起来,为 \(1\) 的位置就是需要修改的位置 注意到每一次操作都会导致两行和两列上有两个数被修改 ...
- 论文阅读笔记四十四:RetinaNet:Focal Loss for Dense Object Detection(ICCV2017)
论文原址:https://arxiv.org/abs/1708.02002 github代码:https://github.com/fizyr/keras-retinanet 摘要 目前,具有较高准确 ...
- 一步步建立 Vue + Cesium 初始化项目
一步步建立 Vue + Cesium 初始化项目 初始化 Vue 项目 升级 npm npm install -g npm 安装 @vue/cli 和 @vue/cli-service-global ...