h5-圆角的使用-案例安卓机器人

1.圆角的使用

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Title</title>
 6     <style>
 7         div{
 8             width: 200px;
 9             height: 100px;
10             border: 1px solid red;
11             background-color: red;
12             /*添加圆角*/
13             /*border-radius:10px;   一个值是四个角都一样*/
14             /*border-radius:10px 30px;
15             第一个值左上  右下  第二个值右上   左下*/
16             /*border-radius:10px  30px  60px;
17             第一个值是左上  第二个值是右上  和左下  第三个值是右下*/
18             /*border-radius:10px  30px   60px  80px;
19                遵循左上  右上  右下  左下的顺序*/
20
21             /*添加椭圆*/
22             /*border-radius:100px/50px
23             添加/是用来设置当前不同方向的半径
24             水平方向x轴/垂直方向y轴
25             */
26             border-radius:100px/50px;
27
28
29             /*添加某个角的圆角*/
30             /*border-top-left-radius: 10px;*/
31
32             /*设置某个角的不同方向上的不同圆角值*/
33             /*border-top-left-radius: 100px  50px;
34             border-bottom-left-radius: 100px  50px;*/
35
36             /*若果四个角的不同方向上的不同圆角值
37             分别是
38             水平方向的:左上  右上  右下  左下/垂直方向:左上  右上  右下  左下
39             */
40             border-radius: 100px 80px 70px 60px/20px 50px 80px 90px;
41         }
42     </style>
43 </head>
44 <body>
45 <div></div>
46 </body>
47 </html>

2.安卓机器人小案例:结合伪元素实现

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Title</title>
 6     <style>
 7         *{
 8             margin: 0;
 9             height: 0;
10         }
11         .content{
12             width: 500px;
13             height: 500px;
14             border: 1px solid red;
15             margin: 50px auto;
16         }
17         .an_header{
18             width: 250px;
19             height: 125px;
20             background-color: green;
21             margin: 10px auto;
22             border-radius: 125px 125px 0 0;
23             position: relative;
24         }
25         .an_header::before,.an_header::after{
26             content: "";
27             width: 20px;
28             height: 20px;
29             border-radius: 10px;
30             background-color: #fff;
31             position: absolute;
32             bottom: 40px;
33         }
34         .an_header::before{
35             left: 70px;
36         }
37         .an_header::after{
38             right: 70px;
39         }
40         .an_body{
41             width: 250px;
42             height: 250px;
43             background-color: green;
44             border-radius: 0 0 20px 20px;
45             margin: 0px auto;
46             position: relative;
47         }
48         .an_body::before,
49         .an_body::after{
50             content: "";
51             width: 30px;
52             height: 180px;
53             position: absolute;
54             background-color: green;
55             top: 30px;
56             border-radius: 10px;
57         }
58         .an_body::before{
59             left: -40px;
60         }
61         .an_body::after{
62             right: -40px;
63         }
64         .an_footer{
65             width: 250px;
66             height: 100px;
67             margin: 0px auto;
68             position: relative;
69         }
70         .an_footer::before,
71         .an_footer::after{
72             content: "";
73             width: 30px;
74             height: 90px;
75             position: absolute;
76             background-color: green;
77             top: 0px;
78             border-radius: 0 0 10px 10px;
79         }
80         .an_footer::before{
81             left: 50px;
82         }
83         .an_footer::after{
84             right: 50px;
85         }
86     </style>
87 </head>
88 <body>
89 <div class="content">
90     <div class="an_header"></div>
91     <div class="an_body"></div>
92     <div class="an_footer"></div>
93 </div>
94 </body>
95 </html>

效果图:

原文地址:https://www.cnblogs.com/FengBrother/p/11373372.html

时间: 2024-10-02 03:03:54

h5-圆角的使用-案例安卓机器人的相关文章

CSS制作安卓机器人

<p>安卓机器人</p> <style><!-- /*整体*/ .robot{ width:400px; height:500px; margin:0px auto; } /*头部*/ .robot .head{ content:" "; width:200px; height:80px; margin:0px auto; background-Color:green; border-radius:90px 90px 0px 0px; } /*

Assignment 2 使用OpenGL画安卓机器人

一. 实现简述 Assignment 2 Report 目标:画一个安卓机器人. 代码结构:在 glutDisplayFunc(drawRobot)中的参数 drawRobot 函数是实 现画机器人的最外层函数,其中包括画脸.画身体.画手和画脚.每个函数又继 续细分画的步骤和方法.如下图所示: 二. 心得体会 这次任务让我对 OpenGl 有了初步认识.通过阅读课本和网上的资料,掌握 使用 OpenGl 的基本功能,比如如何画基本的点.线和多边形.并理解了一些之 前没明白的重要概念,比如 glL

Android自定义View【实战教程】5??---Canvas详解及代码绘制安卓机器人

友情链接: Canvas API Android自定义View[实战教程]3??--Paint类.Path类以及PathEffect类详解 神马是Canvas 基本概念 Canvas:可以理解为是一个为我们提供了各种工具的画布,我们可以在上面尽情的绘制(旋转,平移,缩放等等).可以理解为系统分配给我们一个一个内存空间,然后提供了一些对这个内存空间操作的方法(API), 实际存储是在下面的bitmap. 两种画布 这里canvas可以绘制两种类型的画图,分别是view和surfaceView. V

H5移动端项目案例、web手机微商城实战开发

自微信生态圈一步步强大后,关于移动端购物的趋势,逐渐成为大众关心的内容,目前市场上关于移动商城的制定就有大量版本,比如.微商城.移动商城.移动webAPP.微信商城各等各种定义层出不穷,这就对于移动端电商的发展起到个很好的催化剂.之前对于H5移动端的开发也做过一些项目,这段时间就整理之前的知识,做了个功能更加完善的一个webApp移动端微商城,算是一个不错的H5+css3项目案例实战. 项目截图: 原文地址:https://www.cnblogs.com/xiaoyan2017/p/837286

Android中使用Canvas和Paint绘制一个安卓机器人

场景 在Android中画笔使用Paint类,画布使用Canvas类来表示. 绘图的基本步骤 首先编写一个继承自View的自定义View类,然后重写其onDraw方法,最后把自定义的view添加到actvity中. 效果 注: 博客: https://blog.csdn.net/badao_liumang_qizhi关注公众号 霸道的程序猿 获取编程相关电子书.教程推送与免费下载. 实现 首先在要显示的Activity的布局文件中修改为FrameLayout并添加一个id. <?xml vers

40w+传播量H5页面微营销案例分析

H5微场景页面席卷而来,新媒体营销时代,如何让你的H5微场景页面拥有40w+传播?“ 了解 用户 ” 你的H5微场景页面为什么而做?想要给谁看?他们看什么?这是必须要了解的.不是单纯的输出你想告知的,而是明白用户想要了解想要感兴趣的,给用户一个愿意转发或打开H5微场景页面的理由.让每一个看到的用户,都与这支H5微场景页面有所共鸣,从而带来转发或传播行为:提供具备稀缺性内容的话题.提供表达想法的内容以及提供可以触动内心情感的内容.“ 热点与 借势 ” 杜蕾斯是国内借势营销的标杆.出色的反映能力和创

CSS3之边框圆角的设置案例

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>模板</title> <style> body, ul, li, dl, dt, dd, h1, h2, h3, h4, h5 { margin: 0; padding: 0; } body { font-weight:bold;">

安卓机器人实现

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .box{ width: 300px; height: 300px; border: 1px solid red; background-color: rgb(183,226,219); margin: 1

安卓机器人

回来太晚了.做个头部就好了,先睡觉吧 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn"> &