没有样式就是最好的样式

Archive for June, 2006


IE 7 Beta 3 is here

Jun 30, 2006 Author: | Filed under: Uncategorized

有兴趣自己看吧,我现在对ie没兴趣

http://www.sitepoint.com/blogs/2006/06/30/ie-7-beta-3-is-here/

css 留言提示信息

Jun 29, 2006 Author: | Filed under: Uncategorized

尝试加入一些有趣的提示信息

运行代码 [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

ubuntu firefox 字体模糊问题

Jun 29, 2006 Author: | Filed under: Uncategorized

其它都好,就是firefox无法使用 yuanti,回家试验。

http://forum.ubuntu.org.cn/viewtopic.php?p=94556#94556

browsershots 测试网页在不同系统、浏览器下的表现

Jun 27, 2006 Author: | Filed under: Uncategorized

测试网页在不同系统、浏览器下的表现(screenshot)

http://v03.browsershots.org/website/http://blog.guoshuang.com/

firefox 2.0(bon Echo),3.0(Minefield)测试

Jun 27, 2006 Author: | Filed under: Uncategorized

firefox 2.0,3.0用了大约一个月。总体感觉3.0很不稳定,经常退出。最大的感觉是加入了类似 tab mix 功能,,以及当前tab显示关闭按钮。

我下载的是 2006-06-26 的 nightly 版本

firefox 3.0 alpha1(Minefield)

firefox 2.0(bonecho) alpha3 candidates rc1

下载解压。linux下,Scim输入法经常会与应用程序冲突,文本编辑器打开 firefox 文件,在前面加入

export GTK_IM_MODULE=xim

然后运行

./firefox

因为 firefox 的配置文件使用共同的用户配置目录,所以下面截图并不是默认的样式,而是有我个人的配置文件在内。而且,多个firefox 版本也不能同时运行。

themes 和 extensions 统一叫作 add-ons,可以指定设置外部 feed 阅读器。

超酷的 action script 视觉效果代码

Jun 26, 2006 Author: | Filed under: Uncategorized

效果很玄flash action script,代码却很简单。

大致代码如下:

onClipEvent (load) {

x=0 //where the dot is

y=0 //where the dot is

xmove=0 //it’s movement

ymove=0 //it’s movement

}

onClipEvent (enterFrame) {

xmove+= (_root._xmouse-_x-x)/10 //math

ymove+= (_root._ymouse-_y-y)/10 //math

x+=xmove+(_root._xmouse-_x-x)/10 //math

y+=ymove+(_root._ymouse-_y-y)/10 //math

clear()

lineStyle(1,000000,100)

moveTo(oldx,oldy)

lineTo(x,y)

oldx=x //this is so that in the next frame it knows where the dot was last frame

oldy=y //this is so that in the next frame it knows where the dot was last frame

_rotation– //This is negative on two of the movieclips (that initially have an opposite rotation to eachother), and positive on the other two.

}