- 浏览: 429733 次
- 性别:
- 来自: 上海
最新评论
-
IThead:
纠结了几天,用了你的方法,现在解决了,谢谢!
Eclipse 写Javascript卡死问题 -
Rubicon__:
你好,我在运用PageWidget这个类时,出现第一页翻到第二 ...
android翻书效果实现原理( 贝塞尔曲线绘制原理/点坐标计算) -
lionios:
如果不显示printDialog,则打印出来的是空白页,请问你 ...
Print打印机例子 -
rayln:
weiqiulai 写道哥们儿,我怎么没有看到监控队列的配置和 ...
JMS监听MQ实例 -
weiqiulai:
哥们儿,我怎么没有看到监控队列的配置和代码?
JMS监听MQ实例
文章列表
http://blog.sina.com.cn/s/blog_644502ce0102uwsw.html
PowerDesigner16.5 破解文件 附原版下载地址
http://download.sybase.com/eval/PowerDesigner/PowerDesigner165_Evaluation.exe
PowerDesigner 16.5 破解文件 下载链接:
http://pan.baidu.com/share/link?uk=2550822652&shareid=3337192497
亲自测试过了,可用。
powerdesigner 16.5 破解文件下载后 ...
http://www.guomii.com/posts/30136
如果你是一名 Web 开发者,很多时候都需要在本地搭建服务器测试环境,比如 Apache+Mysql+PHP 这样的环境。事实上 Mac OS X 中想要搭建这样的环境很简单,本文我们就会将详细的教程分享给大家。
首先需要说明的是,Mac OS X 系统其实已经集成了 Apache+PHP环境,用户手动开启即可。在之前的 OS X 系统中,只需要进入「系统偏好设置——共享」,然后开启「Web 共享」就可以打开 Apache。不过在最新的 Mountain Lion 中苹果取消了这个共享功能的图形界面,只能从命令行开启。
...
文字实现水平垂直居中
- 博客分类:
- Html5&Css3
文字实现水平垂直居中的关键代码:
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box-align: center;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box-align: center;
display: -o-box;
-o-box-orient: horizontal;
-o- ...
http://www.w3cplus.com/css3/css3-media-queries-for-iPhone-and-iPads
那么以后大家在iPhone4和iPad设备上,就可以按照横竖板来定样式了:
1、iPhone4竖板
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5) and (orientation:portrait),
only screen and (min-device-pixel-ratio : 1.5) and (orientation:portrait){
/*你的样式写在 ...
通过Iframe进行跨域处理
- 博客分类:
- Js&JQuery
在漫长的前端开发旅途上,无可避免的会接触到ajax,而且一般情况下都是用在同一域下的ajax请求;但是如果请求是发生在不同的域下,请求就无法执行,并且会抛出异常提示不允许跨域请求,目前我没有找到明确的资料说明这是为什么,我觉得应该是出于安全性的考虑吧。纵然如此,要实现跨域访问的话,方法还是有的,而且不只一种,在这里介绍其中一种解决方案:如何利用iframe完成ajax的跨域请求。
如下图所示:域a.com的页面request.html(即http://a.com/request.html)里面嵌套了一个iframe指向域b.com的response.html,而response.html里又 ...
Jsonp是解决跨域问题的一个办法。在jsonp:"callback"是对应后台返回的值使用的。
客户端页面代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; char ...
import java.util.*;
public class HanoiTask {
class Tower<E> {
private int number;
private String name;
private Stack<E> stack = new Stack<E>();
public Tower(int number,String name) {
this.number = number;
thi ...
以LinearLayout为例,它提供的background属性将会将背景图片拉伸,相当难看。事实上我们只需做少量的修改就可以实现web编程中css背景图片的效果。来试试吧。
创建重复的背景图片
在drawable目录下创建一个repeat_bg.xml:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src=" ...
CCClippingNode裁剪功能
- 博客分类:
- Cocos2d
裁剪功能
//裁剪的区域形状
CCSprite *area = CCSprite::create("/res/helloworld.png");
//被裁剪的区域
CCSprite *area1 = CCSprite::create("/res/helloworld.png");
this->addChild(area);
CCClipingNode *node = CCClipingNode::create(area);
node->addChild(area1);
node->setAlphaThreshol ...
CCMotionStreak轨迹
- 博客分类:
- Cocos2d
//参数1:轨迹持续时间
//参数2:轨迹的步长(每个轨迹的间隔)
//参数3:轨迹的高度
//参数4:颜色
//参数5:轨迹对应图片
CCMotionStreak *streak = CCMotionStreak::create(2.0f, 1, 20, ccc3(255,0,0),"/res/helloworld.png");
this->addChild(streak);
streak.setPosition(ccp(200,200));//设定位置后,轨迹才会被显示
update方法和角度转化
- 博客分类:
- Cocos2d
首先在头文件中加入
virtual void update(float delta);
在ccp文件中
this->scheduleUpdate();
这样每一帧都会调用这个方法
取消调用update方法
this->unscheduleUpdate();
弧度与xy转化
float x = cos(n/180*3.14)*r; //n为弧度,r为半径
float y = sin(n/180*3.14)*r; //n为弧度,r为半径
应用加载完成调用的方法
- 博客分类:
- Android
@Override
public void onWindowFocusChanged(boolean hasFocus)
{
if (hasFocus)
{
initAlbum();
}
}
CCAnimationCache动画使用
- 博客分类:
- Cocos2d
存储动画
CCSpriteFame *sprite1 = CCSpriteFrame::create("/helloworld1.png", CCRectMake(0,0,100,100));
CCSpriteFame *sprite2 = CCSpriteFrame::create("/helloworld2.png", CCRectMake(0,0,100,100));
CCArray *frame = CCArray::create(sprite1,sprite2,NULL);
CCAnimation *animation = CCA ...
CCMenu和CCLabelTTF的使用
- 博客分类:
- Cocos2d
CCLabelTTF *label = CCLabelTTF::create("Start", "SimSun", 50);
CCMenuItemLabel *mil = CCMenuItemLabel::create(label, this, menu_selector(HelloWorld::click));
CCMenuItemImage *mil2 = CCMenuItemImage::create("start1.png", "start2.png");
CCMenu *menu = CC ...