没有样式就是最好的样式

Archive for January, 2006


我喜欢的 opera 皮肤(skin)

Jan 20, 2006 Author: | Filed under: Uncategorized

guoshuang2007-12-05+opera skin 包下载 这里有我喜欢的 skin 打包下载

奇怪,很多难看的skin占据着 popular,editor select,top rated,而 m2 optimize 居然在很后的地方…

Vistera v3

http://my.opera.com/community/customize/comments.dml?id=3249

Opera Standard M2 optimized

opera 默认皮肤的优化版本,看起来更自然。

http://my.opera.com/community/customize/comments.dml?id=2396

Tango CL

用Tango 图标做的。

http://my.opera.com/community/customize/skins/?search=tango

likeIE

http://my.opera.com/community/customize/skins/info/?id=3784

Netscape Modern

http://my.opera.com/community/customize/skins/info/?id=160

Mirage Beta

http://my.opera.com/community/customize/skins/info/?id=6229

cibernaut 浏览器

Jan 19, 2006 Author: | Filed under: Uncategorized

cibernaut号称是 Tomorrow’s Browser Today,有如下功能

Self-Evolving Security

Personal Search Engine

Page Auto-Submission

Block Pop-up windows

Build thumbnail galleries

Html File manager

JPG and Zip compressor

大概看了一下,似乎嵌入的是ie,而且功能也比较混乱。个人觉得没什么太多的新意,前景不大。

js 输出 html 字符格式函数

Jan 18, 2006 Author: | Filed under: Uncategorized

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

函数(第一行)

输出html代码(第二行)

str.anchor(”anchor1″)

this is a string

str.big()

this is a string

str.blink()

this is a string

str.bold()

this is a string

str.fixed()

this is a string

str.fontcolor(”darkred”)

this is a string

str.fontsize(5)

this is a string

str.italics()

this is a string

str.link(”index.html”)

this is a string

str.small()

this is a string

str.strike()

this is a string

str.sub()

this is a string

str.sup()

this is a string

str.toLowerCase()

this is a string

str.toUpperCase()

THIS IS A STRING

via JavaScript中生成HTML的字符格式函数

[Edit on 2006-1-18 14:50:00 By guoshuang]

去掉链接的虚线

Jan 17, 2006 Author: | Filed under: Uncategorized

firefox 的链接有时会产生难看的虚线(比如这个blog的vote),sonspring说是因为负值的 text-indent 的缘故,可我怎么觉得是因为 block元素外面没有被限制的原因。

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

可以使用 outline:none 来消除点击链接时的虚线,如

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

记得原来IE使用这两种方法消除链接虚线

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

相关:

http://codylindley.com/Javascript/223/hiding-the-browsers-focus-borders-should-i-shouldnt-i

http://sonspring.com/journal/removing-dotted-links

[Edit on 2006-1-17 17:32:50 By guoshuang]
[Edit on 2006-1-18 0:26:57 By guoshuang]

browser

Jan 16, 2006 Author: | Filed under: Uncategorized

http://www.wannabrowser.com/index.html

flash loadxml + eval 问题

Jan 16, 2006 Author: | Filed under: Uncategorized

eval 不能拿到实时内容,set可以,直接变量名也可以。

flash 第一桢as

XML.prototype.ignoreWhite = true;

var loginReplyXML:XML = new XML();

loginReplyXML.load(”1.xml”)

loginReplyXML.onLoad = function(success:Boolean) {

if (success) {

//处理开始

fblue=this.firstChild.firstChild.firstChild.nodeValue;

ids=this.childNodes[0].childNodes.length

for(i=0;i

{

cid = this.childNodes[0].childNodes.firstChild.nodeName;

cvalue = this.childNodes[0].childNodes.firstChild.firstChild.nodeValue

set(cid,cvalue);

//eval(cid).text=cvalue; //就是这句与上面set 的区别

}

//处理结束

} else {

trace(”an error occurred.”);

}

};

1.xml 内容

blue 8red

22222green

gggggggblue