AOKWORLD

June 4, 2009

百兆宽带何时来临?

Filed under: My Life — Tags: — A.D.JC @ 1:29 pm

一场宽带提速的计划正在3G大规模建设的同时展开.对于目前个人宽带用户最高4M(兆)带宽现状的提升路径,中国电信给出的答案是三年提升到100M.

希望这则消息是真的。

May 26, 2009

As the final examinations draw near, I am crazy…

Filed under: English — Tags: — A.D.JC @ 10:21 pm

So, I will try my best to keep in mind the following words between 01 JUN and 01 JUL.

it's just one course  merely.

Unit 6:
Illusion     ultimate      moral    dilemma    soak      flight      guinea pig

Unit 7:

worship     convince     gym     aging       jog        ideal     though
teens     adolescent      tolerate   agony     slave       critical      pursue
sanity    automatically    be obsessed with

Unit 8:

be inclined to   paralyze   peninsula   afflict   install      utterly      cripple
sweep      peer at       crutch   slacken    indifference  interval   penetrate
fumble   overflow with    tilt    whatsoever  scriptural    admonition

Unit 9:

piles of    rubble        hatred   corpse      heap      with an air of   out of the blue
Bombard   aftermath    nightmare   so far     drift      civilian        ammunition
grim     odds          err        Ignorant    tuck       engulf        spot
doom     assume       be dedicated to

Unit 10:
celebrated   adore      presence      pillar    constant     maternal     senior
Gift      recognize     doomed      destined   missionary  concern     meditation
Nomination  bomber    inseparable    authority   long for    racism      humanity
Inhumane    assertion   public figure   voice     continually  celebrity    pass away
Shed light on

Unit 11:

norm     shift        inadequacy    repute     offset       perspective   be apt to
Transcript  proficiency  correspond to  retain     assumption   fuzzy       humor
Ritual     frequent     resent        gear      coercive      hew        knit
Coordinate

Unit 12:
relaxing   easygoing    govern      continental   consume    spiritual    poll
Dedicate to  rebel       staff        edit

May 25, 2009

请搜索垃圾XX浏览器

Filed under: Web Browser — Tags: — A.D.JC @ 5:52 pm

请打开任何搜索引擎,搜索:

垃圾 IE8

垃圾 IE7

垃圾 IE6

垃圾 Firefox

垃圾 遨游

垃圾 Safari

垃圾 Opera

垃圾 谷歌浏览器(Chrome)

垃圾 世界之窗浏览器

垃圾 TT浏览器

......

全部骂声一片,当然也是叫好一片,浏览器的兼容让某些人备受煎熬,操作问题更是让使用者云里雾里,何时才能迎来统一?

网络秦始皇,你在哪里?

May 20, 2009

SLAMDUNK - 世界が终わるまでは

Filed under: Music — Tags: , — A.D.JC @ 10:33 am

Do you remember the carton SLAMDUNK?

世界が终わるまでは...
大都会に仆はもう一人で
投げ舍てられた空间のようだ
互いのすべてを知り尽くすまでか
爱ならばいっそ永久に眠ろうか...

世界が终わるまでは离れる事もない
そお愿っていた几千の夜と
戻らない时だけか何故辉いては
やつれ切ったいまても壊す...
はかなき想い...この tragedy night

そして人は型を求めて
かげかえのない何かを失う
欲望たらけの街じゃ夜空の
星屑も仆らを灯せない

世界の终わる前に闻かせておくれよ
満开の花が似合いの catastrophe
谁もか望みながら永远を信じない
...なのにきっと明日を梦见てる
はかなき日々とこの tragedy night

世界が终わるまでは离れる事もない
そお愿っていた几千の夜と
戻らない时だけか何故辉いては
やつれ切ったいまても壊す...

May 18, 2009

Position:fixed on IE6

Filed under: Web Develop — Tags: , — A.D.JC @ 11:25 am

Step 1: Inset background:fixed in body.
Step 2: Use expression(offsetParent.scrollTop+offsetParent.clientHeight-400+'px');

body { background:url(imgs/pageBg.png) fixed;}
#menubar {
   	width:100px;
	height:100px;
	position:fixed;
	bottom:0;
	right:0;
	z-index:10000;
	_position:absolute;
	_top:expression(offsetParent.scrollTop+offsetParent.clientHeight-400+'px');
}

[if IE 6] example:

	html{overflow:hidden;}
	body{height:100%;overflow:auto;}
	#fixed{position:absolute;right:17px;}
	/* fixed元素的绝对位置是相对于HTML元素来说,而滚动条是body元素的,这是设置right:17px的原因 */
	#fixed { position:absolute; top:expression(eval(document.body.scrollTop + 50));}

You can:

/* IE7+ FF Other Standard Browser */
html > body #menubar {...}

/* IE6 Only */
* html  #menubar {...}

May 7, 2009

How to understand and use The CSS Framework in project?

Filed under: Web Develop — Tags: , , — A.D.JC @ 9:27 am

Anyone tell me?

April 28, 2009

Default Style of HTML Elements

Filed under: Web Develop — Tags: , , — A.D.JC @ 10:56 pm

HTML标签元素的默认值,仅供参考。

/* Default Css Style */
html, address,
blockquote,
body, dd, div,
dl, dt, fieldset, form,
frame, frameset,
h1, h2, h3, h4,
h5, h6, noframes,
ol, p, ul, center,
dir, hr, menu, pre { display: block }
li { display: list-item }
head { display: none }
table { display: table }
tr { display: table-row }
thead { display: table-header-group }
tbody { display: table-row-group }
tfoot { display: table-footer-group }
col { display: table-column }
colgroup { display: table-column-group }
td, th { display: table-cell; }
caption { display: table-caption }
th { font-weight: bolder; text-align: center }
caption { text-align: center }
body { margin: 8px; line-height: 1.12 }
h1 { font-size: 2em; margin: .67em 0 }
h2 { font-size: 1.5em; margin: .75em 0 }
h3 { font-size: 1.17em; margin: .83em 0 }
h4, p,
blockquote, ul,
fieldset, form,
ol, dl, dir,
menu { margin: 1.12em 0 }
h5 { font-size: .83em; margin: 1.5em 0 }
h6 { font-size: .75em; margin: 1.67em 0 }
h1, h2, h3, h4,
h5, h6, b,strong { font-weight: bolder }
blockquote { margin-left: 40px; margin-right: 40px }
i, cite, em,
var, address { font-style: italic }
pre, tt, code,
kbd, samp { font-family: monospace }
pre { white-space: pre }
button, textarea,
input, object,
select { display:inline-block; }
big { font-size: 1.17em }
small, sub, sup { font-size: .83em }
sub { vertical-align: sub }
sup { vertical-align: super }
table { border-spacing: 2px; }
thead, tbody,
tfoot { vertical-align: middle }
td, th { vertical-align: inherit }
s, strike, del { text-decoration: line-through }
hr { border: 1px inset }
ol, ul, dir,
menu, dd { margin-left: 40px }
ol { list-style-type: decimal }
ol ul, ul ol,
ul ul, ol ol { margin-top: 0; margin-bottom: 0 }
u, ins { text-decoration: underline }
br:before { content: "\A" }
:before, :after { white-space: pre-line }
center { text-align: center }
abbr, acronym { font-variant: small-caps; letter-spacing: 0.1em }
:link, :visited { text-decoration: underline }
:focus { outline: thin dotted invert }
/* Begin bidirectionality settings (do not change) */
BDO[DIR="ltr"] { direction: ltr; unicode-bidi: bidi-override }
BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override }
*[DIR="ltr"] { direction: ltr; unicode-bidi: embed }
*[DIR="rtl"] { direction: rtl; unicode-bidi: embed }
@media print {
h1 { page-break-before: always }
h1, h2, h3,
h4, h5, h6 { page-break-after: avoid }
ul, ol, dl { page-break-before: avoid }
}

April 24, 2009

The Best of M2M

Filed under: Music — Tags: — A.D.JC @ 11:03 am

Marit and Marion?

April 21, 2009

document.compatMode

Filed under: Web Browser, Web Develop, javascript — Tags: — A.D.JC @ 9:38 am

ocument.compatMode,可以用来判断当前页面采用的渲染方式。下面官方文档的说明:
BackCompat:标准兼容模式关闭。
CSS1Compat:标准兼容模式开启。

当document.compatMode等于BackCompat时,浏览器客户区宽度是document.body.clientWidth;
当document.compatMode等于CSS1Compat时,浏览器客户区宽度是document.documentElement.clientWidth。

浏览器客户区高度、滚动条高度、滚动条的Left、滚动条的Top等等都是上面的情况。

var docbody = document.body;
var docelem = document.documentElement;
if (document.compatMode == "BackCompat")
{
	//alert("Disable! it's BackCompat.");
	cWidth  = docbody.clientWidth;
	cHeight = docbody.clientHeight;
	sWidth  = docbody.scrollWidth;
	sHeight = docbody.scrollHeight;
	sLeft   = docbody.scrollLeft;
	sTop    = docbody.scrollTop;
}
else
{
	//alert("Enable. it's CSS1Compat.");
	//document.compatMode == "CSS1Compat"
	cWidth  = docelem.clientWidth;
	cHeight = docelem.clientHeight;
	sWidth  = docelem.scrollWidth;
	sHeight = docelem.scrollHeight;
	sLeft   = docelem.scrollLeft == 0 ? docbody.scrollLeft : docelem.scrollLeft;
	sTop    = docelem.scrollTop  == 0 ? docbody.scrollTop  : docelem.scrollTop;
}

(以上代码兼容目前流行的全部浏览器,包括:IE、Firefox、Safari、Opera、Chrome)

April 16, 2009

MC Hot Dog

Filed under: Music — Tags: , — A.D.JC @ 10:12 am

MC Hot Dog

一如往常不讳言自己的困顿和彷徨

« Older PostsNewer Posts »

Powered by WordPress