private const double EARTH_RADIUS = 6378.137;//地球半径 private static double RAD = Math.PI / 180.0; //获取两个经纬度之间的距离 public static double GetDistance(doubl...
分类:
其他好文 时间:
2014-06-28 18:57:56
阅读次数:
231
1.圆角:border-radius:16px 16px 16px 16px;2透明度: filter: alpha(opacity=80); opacity: 0.8;3. div内文本自动换行: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
分类:
Web程序 时间:
2014-06-18 22:44:43
阅读次数:
329
new document div{position:absolute;width:200px;height:200px;left:0;top:0;right:0;bottom:0;margin:auto;border-radius:50%;backgroun...
分类:
Web程序 时间:
2014-06-18 21:43:53
阅读次数:
358
css:#profile_block{text-align:center;position:absolute; top:60px; right:10px;}#blog-calendar{border-radius: 7px;background:#fff;}#p_b_follow{padding-t...
分类:
其他好文 时间:
2014-06-18 19:09:20
阅读次数:
198
最近在写jQuery的时候出了这样一个问题?
.clicked{
width: 100px;
height: 40px;
border-radius: 3px;
background-color: #cba;
}
yes
$(document).ready(function(){ $('a').click(function(){...
分类:
Web程序 时间:
2014-06-11 00:49:10
阅读次数:
225
//默认值函数参数
/*
* Test.cpp
*
* Created on: 2014年6月9日
* Author: John
*/
#include
#include
#define Pi 3.14
void FunTest(double Radius, double Height=0);
...
分类:
编程语言 时间:
2014-06-10 06:43:40
阅读次数:
343
.container{ position: relative; width: 200px;
height: 200px; background: #abcdef; -webkit-border-radius: 20px;
-moz-border-radius: 2...
分类:
Web程序 时间:
2014-05-28 22:49:40
阅读次数:
336
-webkit-border-radius:5px; -moz-border-radius:5px;
border-radius:5px;
分类:
Web程序 时间:
2014-05-27 01:52:43
阅读次数:
184
编程题:带参数的宏定义来实现,求圆的周长和面积。#include<stdio.h>#definePI3.14159#defineL(r)2*PI*(r)#defineS(r)PI*(r)*(r)voidmain(){floatradius,circle,area;scanf("%f",&radius);circle=L(radius);area=S(radius);printf("radius:%f\tcircle:%f\tarea:%f\n..
分类:
其他好文 时间:
2014-05-20 21:25:39
阅读次数:
947
Point pos(100, 100); //start point
m_animSprite->setPosition(pos);
int count = 8; float radius = 50.f; float angle = 360.f/count; auto array = PointArray::create(count + 1); Point pt0(r...
分类:
其他好文 时间:
2014-05-18 07:02:31
阅读次数:
250