AXURE是一款原型设计软件,用于交互设计的工具,用来设计软件WEB产品的原型效果图。
相较于利用PowerPoint或Visio软件,Axure RP 可以让应用网站策划人员或网站功能介面设计师,更快速且更简易的建立Web AP和Website的wireframe、流程图、prototype和规格。
Axure RP已经成为成功设计Web AP的重要工具,许多专业人士包括美国Fortune 500公司,到专业的商业分析师(Business Analyst)、信息架构师(Information Architect)、优使性专家(Usability Expert)、产品经理与 IT 顾问皆广为使用。
如果您是互联网产品经理,策划人员,项目经理,网站系统分析师,网站程序开发人员,请学习这款软件,这款软件的易用性很高,你不需要有专业的编程知识,就能够很快的掌握这款软件的使用。
英文版下载地址:http://www.skycn.com/soft/41842.html
汉化补丁下载(660.56 KB)
[2010-02-06 08:49 PM; 下载次数:40]
(汉化包使用方法:解压缩后的 Client.dll 文件放入 Axure 文件夹,覆盖同名文件即可。需要注意的是,这个汉化包仅对 Axure RP 5.1.0.1699版本有效,其他版本可能会引起 Axure 无法启动的问题。)
Axure 5.1.0.1699注册码:
Name:3ddown
Serial:FiCGEezgdGoYILo8U/2MFyCWj0jZoJc/sziRRj2/ENvtEq+7w1RH97k5MWctqVHA
周五 9 九 2011
[转]Axure RP Pro 5中文版+注册码
Posted by Jansfer under 技术
No Comments
周六 3 九 2011
Nginx中的gzip模块简介
Posted by Jansfer under Nginx
No Comments
gzip
语法: gzip on|off
默认值: gzip off
作用域: http, server, location, if (x) location
开启或者关闭gzip模块
gzip_buffers
语法: gzip_buffers number size
默认值: gzip_buffers 4 4k/8k
作用域: http, server, location
设置系统获取几个单位的缓存用于存储gzip的压缩结果数据流。例如 4 4k 代表以4k为单位,按照原始数据大小以4k为单位的4倍申请内存。 4 8k 代表以8k为单位,按照原始数据大小以8k为单位的4倍申请内存。
如果没有设置,默认值是申请跟原始数据相同大小的内存空间去存储gzip压缩结果。
gzip_comp_level
语法: gzip_comp_level 1..9
默认值: gzip_comp_level 1
作用域: http, server, location
gzip压缩比,1 压缩比最小处理速度最快,9 压缩比最大但处理最慢(传输快但比较消耗cpu)。
gzip_min_length
语法: gzip_min_length length
默认值: gzip_min_length 0
作用域: http, server, location
设置允许压缩的页面最小字节数,页面字节数从header头中的Content-Length中进行获取。
默认值是0,不管页面多大都压缩。
建议设置成大于1k的字节数,小于1k可能会越压越大。即: gzip_min_length 1024
gzip_http_version
语法: gzip_http_version 1.0|1.1
默认值: gzip_http_version 1.1
作用域: http, server, location
识别http的协议版本。由于早期的一些浏览器或者http客户端,可能不支持gzip自解压,用户就会看到乱码,所以做一些判断还是有必要的。 注:21世纪都来了,现在除了类似于百度的蜘蛛之类的东西不支持自解压,99.99%的浏览器基本上都支持gzip解压了,所以可以不用设这个值,保持系 统默认即可。
gzip_proxied
语法: gzip_proxied [off|expired|no-cache|no-store|private|no_last_modified|no_etag|auth|any] …
默认值: gzip_proxied off
作用域: http, server, location
Nginx作为反向代理的时候启用,开启或者关闭后端服务器返回的结果,匹配的前提是后端服务器必须要返回包含"Via"的 header头。
- off – 关闭所有的代理结果数据的压缩
- expired – 启用压缩,如果header头中包含 "Expires" 头信息
- no-cache – 启用压缩,如果header头中包含 "Cache-Control:no-cache" 头信息
- no-store – 启用压缩,如果header头中包含 "Cache-Control:no-store" 头信息
- private – 启用压缩,如果header头中包含 "Cache-Control:private" 头信息
- no_last_modified – 启用压缩,如果header头中不包含 "Last-Modified" 头信息
- no_etag – 启用压缩 ,如果header头中不包含 "ETag" 头信息
- auth – 启用压缩 , 如果header头中包含 "Authorization" 头信息
- any – 无条件启用压缩
gzip_types
语法: gzip_types mime-type [mime-type ...]
默认值: gzip_types text/html
作用域: http, server, location
匹配MIME类型进行压缩,(无论是否指定)"text/html"类型总是会被压缩的。
注意:如果作为http server来使用,主配置文件中要包含文件类型配置文件
http
{
include conf/mime.types;
......
}
如果你希望压缩常规的文件类型,可以写成这个样子
http
{
: include conf/mime.types;
: gzip on;
: gzip_min_length 1000;
: gzip_buffers 4 8k;
: gzip_http_version 1.1;
: gzip_types application/x-javascript text/css application/xml;
: ......
}
周六 3 九 2011
[原]Eclipse安装pdt方法
Posted by Jansfer under 技术
No Comments
官方的安装方法是:
- Open Eclipse and go to Help-> Software Updates-> Find and Install
- Select "Search for new features to install" and click "Next"
- Create a New Remote Site with the following details:
- Name: PDT
- URL: http://downloads.zend.com/pdt
- Check the PDT box and click "Next" to start the installation
但是发现运行后提示错误:
An error occurred while collecting items to be installed
session context was:(profile=SDKProfile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.zend.php.debug.debugger,5.3.18.v20110322
No repository found containing: osgi.bundle,org.zend.php.debug.debugger.win32.x86,5.3.18.v20110322
No repository found containing: org.eclipse.update.feature,org.zend.php.debug_feature,5.3.18.v20110322
这时可以尝试使用下面的方法:
1. 在电脑上建立目录:localSite
2. 从http://downloads.zend.com/pdt 下载content.jar, artifacts.xml, artifacts.jar三个文件放到localSite文件夹下
3. 编辑artifacts.xml文件,把里面的"${repoUrl}" 替换为"http://downloads.zend.com/pdt"
4. 将artifacts.xml打包到artifacts.jar里
5. 打开Eclipse,Help > Install New Software > Add > Local 选择localSite然后开始安装。
6. 安装完成,重启Eclipse开启你的PHP之旅。
参考:
http://www.eclipse.org/forums/index.php/m/686010/
周四 14 七 2011
[HY000] [2003] Can’t connect to MySQL server on ‘xxx.xxx.xxx.xxx’解决方法
Posted by Jansfer under MySQL
No Comments
提前:CentOS,直接用命令行连接远程mysql服务正常,用PHP连不上。
提示:[HY000] [2003] Can’t connect to MySQL server on ‘xxx.xxxx.xxx.xxx’ (13)
问题的原因是SELinux导致,解决方法是关闭SELinux或执行以下命令:
setsebool -P httpd_can_network_connect=1
周五 1 七 2011
Bcastr 4.0 Beta – flash image silde show 图片轮换播放 (开源 Open Source)
Posted by Jansfer under 技术
No Comments
Bcastr 4.0 Beta – flash image silde show 图片轮换播放 (开源 Open Source)
Posted on March 19th, 2008 in gadgets | 14 Comments »
更多实例
更新
2008-06-09
- 使用as3.0重写,效率有所提高
- 增加了几种变换方式
- 新参数和bcastr3.x不同,xml格式采用rss2.0的格式,可以直接读取rss中的图片(不能跨域)
- 可以通过xml对播放器设置
- 等多参数可以设置
下载
插入代码
直接写入参数
<object type="application/x-shockwave-flash" data="bcastr4.swf?xml=
<data>
<channel>
<item>
<link>http://www.ruochi.com</link>
<image>images/image1.jpg</image>
<title>Bell Tower,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image2.jpg</image>
<title>Greater Wild Goose Pagoda,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image3.jpg</image>
<title>Terra Cotta Warriors,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image4.jpg</image>
<title>The Forest of Steles ,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image5.jpg</image>
<title>The Qian Tomb,Xi’an,China</title>
</item>
</channel>
" width="650" height="500">
<param name="movie" value="bcastr4.swf?xml=
<data>
<channel>
<item>
<link>http://www.ruochi.com</link>
<image>images/image1.jpg</image>
<title>Bell Tower,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image2.jpg</image>
<title>Greater Wild Goose Pagoda,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image3.jpg</image>
<title>Terra Cotta Warriors,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image4.jpg</image>
<title>The Forest of Steles ,Xi’an,China</title>
</item>
<item>
<link>http://www.ruochi.com</link>
<image>images/image5.jpg</image>
<title>The Qian Tomb,Xi’an,China</title>
</item>
</channel>
" />
</param></object>
使用xml传递参数
<object id="bcastr4" data="bcastr4.swf?xml=http://bcastr.ruochi.com/v4/bcastr.xml" type="application/x-shockwave-flash" width="240" height="180">
<param name="movie" value="bcastr4.swf?xml=http://bcastr.ruochi.com/v4/bcastr.xml" />
</object>
参数说明
xml的可以设置的全部参数,以及默认的数值
http://www.ruochi.com images/image1.jpg http://www.ruochi.com images/image2.jpg http://www.ruochi.com images/image3.jpg http://www.ruochi.com images/image4.jpg http://www.ruochi.com images/image5.jpg 0 8 false normal 1 _self auto 5 5 auto 20 0xff6600 .75 1 .7 0xB3433 0xff9900 0xff6600 click true true noBorder blur true
以下用”.”描述xml树结构并说明参数作用
影片信息
channel.item
图片信息,可以设置多张图片
channel.itme.image
图片地址参数,此参数是唯一必须要有的参数,其他参数都有默认参数
channel.itme.link
对应图片的连接
channel.itme.tilte
对应图片的标题
设置
config.roundCorner
图片的圆角
config.autoPlayTime
图片切换时间,默认值是8,单位秒
config.isHeightQuality
图片缩小是否采用高质量的方法,默认值false
config.normal
图片的混合模式
config.transDuration
图片在切换过程中的时间,默认值1,单位秒
config.windowOpen
图片连接的打开方式,默认值”_blank”,在新窗口打开,也可以使用”_self”,使用本窗口打开
config.btnSetMargin
按钮的位置,文字的位置,用了css的margin概念,默认值”auto 5 5 auto”,四个数值代表 上 右 下 左 相对于播放器的距离,四个数值用空格分开,不需具体数值用”auto”填写 ,比如左上对齐并都有10像素的距离可以写 “10 auto auto 10″, 右下角对齐是”auto 10 10 auto”
config.btnDistance
每个按钮的距离,默认值20
config.titleBgColor
标题背景的颜色,默认0xff6600
config.titleTextColor
标题文字的颜色,默认0xffffff
config.titleBgAlpha
标题背景的透明度,默认0.75
config.titleFont
标题文字的字体,默认值”微软雅黑”
config.titleMoveDuration
标题背景动画的时间,默认值1,单位秒
config.btnAlpha
按钮的透明度,默认值0.7
config.btnTextColor
按钮文字的颜色,默认值0xffffff
config.btnDefaultColor
按钮的默认颜色,默认值0x1B3433
config.btnHoverColor
按钮的默认颜色,默认值0xff9900
config.btnFocusColor
按钮当前颜色,默认值0xff6600
config.changImageMode
切换图片的方法,默认值”click”,点击切换图片,还可以使用”hover”,鼠标悬停就切换图片
config.isShowBtn
是否显示按钮,默认值”true”
config.isShowTitle
是否显示标题,默认值”true”
config.scaleMode
图片放缩模式: 默认值是”noBorder”
“showAll”: 可以看到全部图片,保持比例,可能上下或者左右
“exactFil”: 放缩图片到舞台的尺寸,可能比例失调
“noScale”: 图片的原始尺寸,无放缩
“noBorder”: 图片充满播放器,保持比例,可能会被裁剪
config.transform
图片放缩模式: 默认值是”alpha”
“alpha”: 透明度淡入淡出
“blur”: 模糊淡入淡出
“left”: 左方图片滚动
“right”: 右方图片滚动
“top”: 上方图片滚动
“bottom”: 下方图片滚动
“breathe”: 有一点点地放缩的淡入淡出
“breatheBlur”: 有一点点地放缩的模糊淡入淡出,本页的例子就是这个
config.isShowAbout
是否显示关于信息,默认值”true”
意见和反馈
- GzhWxj » flash幻灯片
[...] 这里应该是他的官网了,反正我也是从这里找到详细配置的 http://www.ruochi.com [...]
- 用Bcastr Flash播放器轮播图片 « 景康在线
[...] 它分channel和config两个部分,显然,前者定义图像文件的链接地址,地址和标题,后者定义播放这些对象的属性。config参数的详细定义请参照http://www.ruochi.com上关于Bcastr的介绍。需要注意的是图片地址要相对于blog根目录的位置来设置。 [...]
- 发现Bcastr升级到4.0 Beta版
[...] 官方说明:http://www.ruochi.com/main/2008/03/19/bcastr-40/ [...]
- Bcastr 图片轮换播放Flash | Nffish’s Blog
[...] code 主页。 效果不错,作者提供了8种效果供使用 作者提供了很详细的教程,我就不多说,自己看吧。 [...]
- STEVE
Pillspot.org. Canadian Health&Care.No prescription online pharmacy.Special Internet Prices.PillSpot.org.Vitamins@buy.online” rel=”nofollow”>.…
Categories: Antibiotics.Mental HealthEye Care.Blood Pressure/Heart.Skin Care.Anxiety/Sleep Aid.Weight Loss.Antidiabetic.Antidepressants.Mens Health.Vitamins/Herbal Supplements.Antiviral.Stop SmokingPain Relief.Stomach.Anti-allergic/Asthma.Womens H…
- non stick cookware
nonstick cookware…
desired to hop in and say I am diggin what you are sayin’! You have created some valid things and whilst I will not like anything you have explained I believe you produce a very good argument. Hold up the fine operate ‘cus I’ll be checkin’ up on yo…
- lamps
Cabinhttp://uflourescentyrio7.AWESOMEBABYCLOTHES.INFO/tag/lamps+Cabin+Lighting/: lamps…
Lighting…
- player
lecteurhttp://svideokbcqvk.AUTOPARTSVILLE.INFO/tag/lecteur+player+8/: player…
lecteur…
- sofas
furniturehttp://xmystic966gba.ABABYCLOTHES.INFO/tag/ashley+sofas+furniture/: furniture…
ashley…
- [旧版博客]侧栏FLASH图片播放器的使用方法 « BearNotes
[...] PS:本文于 2010-09-12 日更新,原文标题为 “本站侧栏FLASH图片播放器的使用方法”,另旧版博客已关闭,图片播放器(Bcastr 4.0)的演示效果和使用方法及下载可以浏览其官方页面:Bcastr 4.0 Beta – flash image silde show 图片轮换播放 (开源 Open Source)。以下是原文,是基于bo-blog程序的: [...]
- bsdfse
Track back fromhttp://monclerjacken.want2blog.net/ ……
very good, your blog theme is genuinely nice, I’m hunting to get a new theme for my own blog, I like yours, now I’ll go research the same template!…
- hello
Track back fromhttp://monclerjacken.want2blog.net/ ……
excellent, your blog layout style is truly wonderful, I’m seeking for the new theme for my own web site, I like yours, now I’ll go seek the same theme!…
- business management
Intriguing post. I have been searching for some good resources for solar panels and discovered your blog. Planning to bookmark this one!…
I REALLY liked your post and blog! It took me a minute bit to find your site…but I bookmarked it. Would you mind if I posted a link back to your post?…
- business management
Hi…
I saw this really great post today….