公司的年假,5天+双周末+1天调休。回家看看老妈,家是一个幸福的地方
回家的火车票
现在连Macromedia都为之应用
点击这个链接 http://weblogs.macromedia.com/pent/flickr/PhotoSearch.html
出现以下认证信息后,你可以在MM上实现基于Flex的相片查询.
You have successfully authorized the application Flex Demonstration. You should now close this window and return to the application because it needs to perform some additional work to complete the process. (更多…)
http://www.iancoyle.com/
网站声称100%的XHTML+CSS,技术的确强。滑动效果也运用的相当自如,美中不足在个别浏览器下JS会报错。
https://www.shopcomposition.com/
时尚站点,全Flash,值得称道的是能很轻松的找到想要的东西,并得到最详细的信息。首页的背景对产品的理解不言而喻。
http://news.163.com
网易新闻站全新改版,网易的技术是没话的说。首次在网络媒体中大胆采用传统行业的排版或布局,更加贴近了群众。字体的的大小和间距相当爽,这也是在大显示器,大分辩率出现后对传统9px字体升级的大胆运用。 (更多…)
这两个域名都是他们的:
http://www.favouritewebsiteawards.com/
http://www.thefwa.com
刚刚改版,采用了纯Flash技术,鼠标滑轮滚动选择,技术真是强。 (更多…)
OK,在使用以下声明时,会使一个最常用的漂浮下拉广告失效
直接导致document.body.scrollTop永远等于0, body Scroll永远也不会引发。搜索了一下,发现了解决方案。
即是使用:document.documentElement.scrollTop 替代 document.body.scrollTop
article/document_body_doctype_switching_and_more/17/30655/” target=”_blank”>点这里查看老外的详细分析
以下是正确的漂浮广告下拉代码,在所谓的”W3C标准”里可以正确运行
var delta=0.15
var collection;
function floaters() {
this.items = [];
this.addItem = function(id,x,y,content)
{
document.write('
'+content+'
');var newItem = {};
newItem.object = document.getElementById(id);
newItem.x = x;
newItem.y = y;
this.items[this.items.length] = newItem;
}
this.play = function()
{
collection = this.items
setInterval('play()',10);
}
}
function play()
{
for(var i=0;idocument.documentElement.scrollTop+followObj_y)) {
var dy=(document.documentElement.scrollTop+followObj_y-followObj.offsetTop)*delta;
dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
followObj.style.top=followObj.offsetTop+dy;
}
followObj.style.display = '';
}
}
var theFloaters = new floaters();
theFloaters.addItem('followDiv1','document.body.clientWidth-108',1,'
');
theFloaters.play();
© 2024 Xiaoxiao’s Weblog. All Rights Reserved. 粤ICP备15088982号