Archive for 九月, 2009
sql server2000的jdbc的驱动官方下载
星期一, 九月 28th, 2009
今天朋友要哥帮他找个sql server2000的jdbc的驱动,在微软站点就有这个驱动程序: 1.在Window下面有如下地址可以使用:http://www.uncj.com/upload/files/ms_jdbc_setup.exe 和 http://download.microsoft.com/download/3/0/f/30ff65d3-a84b-4b8a-a570-27366b2271d8/setup.exe 2.在unix中下载地址如下:http://download.microsoft.com/download/3/0/f/30ff65d3-a84b-4b8a-a570-27366b2271d8/mssqlserver.tar 下载完成后,双击安装至完成即可!安装完成后,可能还得进行环境变量的设置,呵呵,这里就不一一说明了,希望看到的朋友能用到!
哥抽的不是烟,是寂寞
星期一, 九月 28th, 2009
有时候经常听到别人说什么,不要迷恋哥,哥只是一个传说,哥发的不是贴是寂寞,我想说,哥抽的不是烟,是寂寞,今晚,哥又点起了一根烟,不要以为哥是为了抽烟,其实不是,拿出烟并不一定是抽烟,是为了让烟与哥作伴,挡住寂寞,哥承诺过不抽烟,这个承诺并没打破,因为哥不是在抽烟,哥抽的是寂寞….
仿淘宝分类div+css
星期日, 九月 27th, 2009
最近的建站过程中,在分类设计的时候想到是否可以用上淘宝首页左中下经典布局,于是自己试试怎么样div+css实现此布局的特效,经过一个小时的奋战终于做出的那个样式.于是把贴到了自己的站上,截图如下:不过此效果有待优化,本站暂时只能实现静态页面的显示,自动调用的分类还有待实现….
经典js特效代码II
星期日, 九月 27th, 2009
竖直图片轮播代码: <style type=”text/css”> div#MainPromotionBanner{width:430px;height:200px;background:#000;} #MainPromotionBanner #SlidePlayer {position:relative;margin: 0 auto;} #MainPromotionBanner .Slides{padding: 0;margin: 0;list-style: none;height: 200px;overflow: hidden;} #MainPromotionBanner .Slides li {float: left;width: 430px;height: 200px;} #MainPromotionBanner .Slides img{border:0;display: block;width: 430px;height: 200px;filter:alpha(opacity=50)} #MainPromotionBanner .SlideTriggers{margin: 0;padding: 0;list-style: none; position: absolute; top: 165px; right: 0px;z-index: 10; height: 25px;} #MainPromotionBanner .SlideTriggers li{float: left;display:inline;color: #74a8ed;text-align: center;line-height:16px;width: 16px; height: 16px;font-family: Arial;font-size: .9em;cursor: pointer;overflow: [...]
经典js特效代码I
星期日, 九月 27th, 2009
不间断图片轮显代码: <script type=”text/javascript”> function ScrollImgLeft(){ var speed=20 var scroll_begin = document.getElementById(“scroll_begin”); var scroll_end = document.getElementById(“scroll_end”); var scroll_div = document.getElementById(“scroll_div”); scroll_end.innerHTML=scroll_begin.innerHTML function Marquee(){ if(scroll_end.offsetWidth-scroll_div.scrollLeft<=0) scroll_div.scrollLeft-=scroll_begin.offsetWidth else scroll_div.scrollLeft++ } var MyMar=setInterval(Marquee,speed) scroll_div.onmouseover=function() {clearInterval(MyMar)} scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed)} } </script> <style type=”text/css”> /*作品*/ ul,li{margin:0px; padding:0px;list-style:none;} .sqBorder {width:532px; height:138px;} .scroll_div {width:532px; height:138px;margin:0 auto; overflow: hidden; white-space: [...]