Archive for “ September, 2009 ”
20
Sep
Post on 01:43, September 20, 2009, by Sue Zhou

应双方父母要求,受Google picasa被墙影响,照片在此重新上传,共计78张照片。

使用说明:每页20张照片,点任意照片可见大图,点任意大图可回本日志。

友情提醒:只有飞机甲乙丙丁及路人戊己庚立辛,熊和公主没有在照片中出现。

Category: 生活  3 Comments
15
Sep
Post on 22:13, September 15, 2009, by Sue Zhou

自打苹果电脑回来后,就一直非常吹毛求疵的整理我的音乐库。换到了iTune,填补了歌曲信息,搜索了各专辑封面图片按专辑收藏,跟没完没了的编码问题死磕到底。终于不再只是单纯听某熊放的歌了,终于也会看着一堆歌曲琢磨下此刻是听啥的心情了。

我不是一个歌迷,从来不是,也不是冒充行家,听的歌大多是2003年及以前的。本来对新鲜歌手接受能力异常缓慢,加之后来辗转异国他乡更加的跟不上行势了。

偏爱国语歌曲多于外文,也许需要对歌词的咬文嚼字加上旋律节奏的催化才能让我对一首歌“浮想联翩”,进而喜爱到百听不厌。

喜欢听悲情歌曲,通俗点说就是失恋失爱歌曲。虽然跟我的生活不搭边,却总是不自觉的融入歌曲所创造的舞台场景中,揪心于那种痛苦、伤心和无可奈何。代表歌手就是梁静茹──熊熊说其就是一个小怨妇──一边说着明天是多么多么的美好,要向明天看,要放下不开心,一边说着我今天是多么的伤心,昨日的种种是多么的烙在心中。

还喜欢听R&B,喜欢带说唱的歌曲,喜欢节奏感强的舞曲,等等不在今天涂鸦之列。

此涂鸦是由于连听两着喜欢的老的悲歌而感,一首刘若英的《成全》,一首李宗盛和林忆莲的《当爱已成往事》。涂鸦嘛,随兴之作,涂着涂着没感觉了,也就出来这么个半调子的乱七八糟小文作日志充数了。

Category: 涂鸦  One Comment
14
Sep
Post on 22:14, September 14, 2009, by Sue Zhou

ipod_nanoMy new toy, in Apple exclusive (Product)™ red color!

Nano直至第五代,终于赢得了我的倾心。新功能包括Video camera, FM radio, VoiceOver Kit, Pedometer。至此,我对一个MP3播放器的所有欲求均已满足,该产品做为一个MP3播放器也巅峰造极,出神入化,无所不能……本公主从此在MP3播放器领域无所欲无所求了^^

晚上花了一个多小时看了9月9日凌晨1时美国的苹果新闻发布会的视频,观后感就是──Apple is Genius!

PS,某熊不要瞎紧张,我对iPhone, iTouch目前没有购买欲,嗯嗯。

Category: 生活  2 Comments
11
Sep
Post on 11:38, September 11, 2009, by Sue Zhou

In response to: css3之rounded corner

Here is a simple example to create 5px radius rounded corner.

Image part:
corner images
for IE7 and above, using PNG images: corner-tl.png, corner-tr.png, corner-bl.png, corner-br.png
for IE6, using non-PNG instead, or try using Unit PNG Fix (unitpngfix.js) to hack.

HTML part:

<div class="round">
	Massive content goes here.
</div>

CSS part:

.round {
	padding:5px;
	background:#238427;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	*padding:0;
}

.wrap-tl {
	background: url(assets/corner_tl.png) top left no-repeat;
	_background: url(assets/corner_tl.gif) top left no-repeat;
}
.wrap-tr {
	background: url(assets/corner_tr.png) top right no-repeat;
	_background: url(assets/corner_tr.gif) top left no-repeat;
}
.wrap-bl {
	background: url(assets/corner_bl.png) bottom left no-repeat;
	_background: url(assets/corner_bl.gif) top left no-repeat;
}
.wrap-br {
	background: url(assets/corner_br.png) bottom right no-repeat;
	_background: url(assets/corner_br.gif) top left no-repeat;
	padding:5px;
}

jQuery part:

$(document).ready(function(){
	if($.browser.msie){
		$('.round').wrapInner('<div class="wrap-tr"><div class="wrap-tl"><div class="wrap-bl"><div class="wrap-br"></div></div></div></div>');
	}
});

Ideally, the jQuery code will made the HTML code looks like the following in IEs.

<div class="round">
	<div class="wrap-tr">
		<div class="wrap-tl">
			<div class="wrap-bl">
				<div class="wrap-br">
					Massive content goes here.
				</div>
			</div>
		</div>
	</div>
</div>
Category: 分享  Tags: , ,  One Comment
03
Sep
Post on 10:02, September 3, 2009, by Sue Zhou

抵英四周年纪念日。

特此挖坑留念。

Category: 涂鸦  One Comment