border-radius:该属性允许您为元素添加圆角边框! 语法 注释:按此顺序设置每个 radii 的四个值。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left ...
分类:
其他好文 时间:
2016-10-20 11:58:15
阅读次数:
207
ys_loading.css.ys-loading{
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
z-index:9999;
}
.ys-loadingem{
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
width:44px;
height:44px;
margin:auto;
border-radius:22px;
opacity:0.3;
overflow:hidden;
}
.ys-..
分类:
Web程序 时间:
2016-10-17 16:28:45
阅读次数:
153
1、drawable 1 <shape xmlns:android="http://schemas.android.com/apk/res/android" > 2 <corners android:radius="10dp"/> 3 4 </shape> 1 <shape xmlns:androi ...
分类:
移动开发 时间:
2016-10-17 13:12:27
阅读次数:
263
1,首先需要下载ie-css3.htc 2,需要引用ie-css3.htc 使用演示: .main{ border: 2px solid #C0C0C0; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10 ...
分类:
其他好文 时间:
2016-10-15 22:29:36
阅读次数:
217
一些html5和css3的一些常见面试题 最近总结了一些有关于html5和css3的一些常见面试题,希望对正在找工作的你有所帮助。 还有欢迎大家补充~~~ 一、HTML5 CSS3 1. CSS3实现圆角(border-radius),阴影(box-shadow), 2. 对文字加特效(text-s ...
分类:
Web程序 时间:
2016-10-15 19:24:49
阅读次数:
227
圆角边框 border-radius 兼容到 IE9. border-radius: 50%, 后面的数字表示那个角的圆的半径, 为 50% 是根据盒子宽高合成的. border-radius: 40px, 也表示4个角都是一个半径为 40px 的圆. border-radius: 40px 50p ...
分类:
Web程序 时间:
2016-10-14 13:59:58
阅读次数:
138
三个阶段: 1.背景图片; 2.css2.0+标签模拟圆角; 3.css3.0圆角属性(border-radius). 1.1.背景图片--宽度固定,高度自适应圆角 为容器设置宽度 在主体的上方加一个div,以上圆角为背景;在主体的下方加一个div,以下圆角为背景。 1.2.背景图片--宽高自适应圆 ...
分类:
Web程序 时间:
2016-10-12 22:15:09
阅读次数:
182
项目中用到的一些特殊字符和图标 html代码 <div class="cross"></div> css代码 .cross{ width: 20px; height: 20px; background-color: #F3F9FF; border-radius: 10px; border: 1px ...
分类:
Web程序 时间:
2016-10-10 16:25:50
阅读次数:
289
border-radius : none | <length>{1,4} [ / <length>{1,4} ]? 相关属性: border-top-right-radius , border-bottom-right-radius , border-bottom-left-radius , bor ...
分类:
其他好文 时间:
2016-10-10 14:03:22
阅读次数:
160
使用VPython,python(x,y)中已安装VPython模块 from visual import *cylinder(pos=(0,1,0), axis=(0,1,0), radius=0.1, color=(0,1,0))box = box(length=4, height=0.5, w... ...
分类:
编程语言 时间:
2016-10-09 23:04:44
阅读次数:
325