function Circle( radius ){? ? ? ? ? ?this.r = radius;? ? ? ? ? ?this.des = "圆形"; ? ? ? ? ?this.showInfo = function(){ ? ? ? ? ? ? ?alert("这是一个"+this.des); ...
分类:
其他好文 时间:
2015-09-09 15:04:30
阅读次数:
150
一般我们通过box-shadow来设置盒阴影,但是有些属性我们一般没有用到,这篇文章将对box-shadow属性进行逐个分析。语法CSS Code复制内容到剪贴板E {box-shadow:inset x-offset y-offset blur-radius spread-radius color...
分类:
Web程序 时间:
2015-09-09 11:20:16
阅读次数:
156
double HalfLength(AcGePoint3d pt1, AcGePoint3d pt2){ double radius = 0; double len1 = ( pt2.y - pt1.y); double len2 = ( pt2.x - pt1.x); radius = sqrt(...
分类:
其他好文 时间:
2015-09-06 18:17:29
阅读次数:
115
html5标签 css3的border-radius在IE下没有效果,加上:behavior: url(ie-css3.htc); html5标签
分类:
Web程序 时间:
2015-09-05 00:02:47
阅读次数:
250
(1)设置一个Cirlce 类,其中包含一个double类型的radius属性代表圆的半径。包括一个findarea方法返回圆的面积。(2)设置一个PassObject类,在类中定义一个printAreas方法,该方法的是指如下:public void printAreas(Crilce c,int...
分类:
其他好文 时间:
2015-08-31 19:28:59
阅读次数:
198
----->Display属性和Visibility属性:一个清除内容和框体,另一个只清除内容而保留窗体;$('#abc').css({ 'font-size' : '12px', '-webkit-border-radius' : '5px', 'color' : '#cc0000'});----...
分类:
Web程序 时间:
2015-08-31 19:20:41
阅读次数:
171
using UnityEngine;
using System.Collections;
public class CreateGameObject : MonoBehaviour {
private Vector3 centerPos; //圆心的位置
private float radius = 5; //半径
private float ang...
分类:
编程语言 时间:
2015-08-31 15:20:02
阅读次数:
182
CSS强大的特效:一、边框:1、box-shadow:10px 10px 10px 10px red水平垂直 模糊延长颜色示例:测试数据 2、border-radius:10px;圆角3、border-image:url("");4、border-color:边框颜色二、背景:1、backgrou....
分类:
Web程序 时间:
2015-08-30 22:53:29
阅读次数:
223
核心函数是:CGContextAddArc(CGContextRef c, CGFloat x, CGFloat y, CGFloat radius, CGFloat startAngle, CGFloat endAngle, int clockwise) * CGContextRef: 图形...
1、TACACS+相关信息TACACS+软件下载地址TACACS+首页介绍2、RADIUS软件下载地址1)FreeRADIUS下载地址2)安装RADIUS的经典文章3)
分类:
其他好文 时间:
2015-08-28 13:11:30
阅读次数:
172