有兴趣自己看吧,我现在对ie没兴趣
http://www.sitepoint.com/blogs/2006/06/30/ie-7-beta-3-is-here/
尝试加入一些有趣的提示信息
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
其它都好,就是firefox无法使用 yuanti,回家试验。
测试网页在不同系统、浏览器下的表现(screenshot)
http://v03.browsershots.org/website/http://blog.guoshuang.com/

firefox 2.0,3.0用了大约一个月。总体感觉3.0很不稳定,经常退出。最大的感觉是加入了类似 tab mix 功能,,以及当前tab显示关闭按钮。
我下载的是 2006-06-26 的 nightly 版本
firefox 2.0(bonecho) alpha3 candidates rc1
下载解压。linux下,Scim输入法经常会与应用程序冲突,文本编辑器打开 firefox 文件,在前面加入
export GTK_IM_MODULE=xim
然后运行
./firefox
因为 firefox 的配置文件使用共同的用户配置目录,所以下面截图并不是默认的样式,而是有我个人的配置文件在内。而且,多个firefox 版本也不能同时运行。
themes 和 extensions 统一叫作 add-ons,可以指定设置外部 feed 阅读器。




效果很玄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.
}