类目: JS DATE:九月 4th, 2010
自己博客一直在使用的一个scoll to 效果,既然建了代码库,那么就顺便也加进来,方便日后随时调用:
$(document).ready(function(){
$('a[href*=#]').c......
类目: JS DATE:九月 3rd, 2010
一个js+css隔行换色效果,貌似在firefox下不兼容?先收藏下来做个记录,用时再修改!
title
111
222
333
444
555
666
objName=document.getElemen......
类目: JS DATE:九月 3rd, 2010
lastNo=0
function re(menu_no){
if(lastNo!=menu_no){
cur=menu_no+1
lastNo=menu_no
rest()
}else{
cur=100
}
document.getElementById("board"+men......
类目: JS DATE:九月 3rd, 2010
有时候需要在页面上体现点击记录的体验。这段ajax记录浏览历史的代码挺实用的!
//cookie的相关函数
function getCookieVal (offset) {
var endstr = docume......
类目: CSS DATE:九月 3rd, 2010
UL.myul1 LI{background-color: expression(this.sourceIndex%2==0?'#9FB7F6':'#B6C8F8');
}
111
222
333
444
555
666
类目: CSS DATE:九月 3rd, 2010
body {
margin: 10px auto;
width: 570px;
font: 75%/120% Arial, Helvetica, sans-serif;
color: #999999;
}
a {
color:#333399;
}
a:hover {
text-decorat......