JAVA涂鴉
關于JAVA的點點滴滴
BlogJava
首頁
新文章
新隨筆
聚合
管理
posts - 50, comments - 689, trackbacks - 0
QQ樹形6
<!
DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html?
>
<
head
>
<
meta?
http-equiv
="Content-Type"
?content
="text/html;?charset=gb2312"
?
/>
<
title
>
無標題文檔
</
title
>
<
style?
type
="text/css"
>
<!--
#hor1?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
20px
;
????width
:
220px
;
????height
:
20px
;
????z-index
:
1
;
????background-color
:
?#999900
;
}
#hor2?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
40px
;
????width
:
220px
;
????height
:
20px
;
????z-index
:
2
;
????background-color
:
?#FFCC00
;
}
#hor3?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
60px
;
????width
:
220px
;
????height
:
20px
;
????z-index
:
3
;
????background-color
:
?#99CC00
;
}
#board1?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
40px
;
????width
:
220px
;
????height
:
120px
;
????z-index
:
-100
;
????background-color
:
?#333333
;
????visibility
:
?hidden
;
}
body,td,th?
{
}
{
????font-family
:
?Verdana,?Arial,?Helvetica,?sans-serif
;
????font-size
:
?12px
;
????color
:
?#FFFFFF
;
????font-weight
:
?bold
;
}
body?
{
}
{
????background-color
:
?#666666
;
}
#board2?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
60px
;
????width
:
220px
;
????height
:
120px
;
????z-index
:
-90
;
????background-color
:
?#333333
;
????visibility
:
?hidden
;
}
#board3?
{
}
{
????position
:
absolute
;
????width
:
220px
;
????height
:
120px
;
????z-index
:
-80
;
????left
:
?320px
;
????top
:
?80px
;
????background-color
:
?#333333
;
????visibility
:
?hidden
;
}
#hor4?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
80px
;
????width
:
220px
;
????height
:
20px
;
????z-index
:
4
;
????background-color
:
?#99CCCC
;
}
#board4?
{
}
{
????position
:
absolute
;
????left
:
320px
;
????top
:
100px
;
????width
:
220px
;
????height
:
120px
;
????z-index
:
-70
;
????background-color
:
?#333333
;
????visibility
:
?hidden
;
}
-->
</
style
>
<
script?
type
="text/javascript"
>
lastNo
=
0
function
?re(menu_no)
{
if
(lastNo
!=
menu_no)
{
cur
=
menu_no
+
1
lastNo
=
menu_no
rest()
}
else
{
cur
=
100
}
document.getElementById(
"
board
"
+
menu_no).style.visibility
=
"
visible
"
}
function
?rest()
{
for
(i
=
1
;i
<=
4
;i
++
)
{
document.getElementById(
"
hor
"
+
i).style.top
=
20
*
i;
document.getElementById(
"
board
"
+
i).style.visibility
=
"
hidden
"
}
menu_num
=
4
;
?act
=
1
?height
=
120
+
20
?speed
=
0
;
?posY
=
0
;
}
function
?huke()
{
if
(act
==
1
&&
cur
<
100
)
{
speed
=
(height
-
posY)
*
0.69
+
speed
*
0.6
posY
+=
speed
for
(i
=
cur;i
<=
menu_num;i
++
)
{
document.getElementById(
"
hor
"
+
i).style.top
=
posY
+
(i
-
2
)
*
20
}
if
(Math.abs(height
-
posY)
<
0.5
)
{
for
(i
=
cur;i
<=
menu_num;i
++
)
{
document.getElementById(
"
hor
"
+
i).style.top
=
height
+
(i
-
2
)
*
20
}
act
=
0
}
setTimeout(
"
huke()
"
,
50
)
}
}
</
script
>
</
head
>
<
body
>
<
div?
id
="hor1"
?onclick
="re(1);huke()"
>
News
</
div
>
<
div?
id
="hor2"
?onclick
="re(2);huke()"
>
Populor
</
div
>
<
div?
id
="hor3"
?onclick
="re(3);huke()"
>
Sports
</
div
>
<
div?
id
="hor4"
?onclick
="re(4);huke()"
>
Woman
</
div
>
<
div?
id
="board1"
>
1.由AS而想起Javascript
<
br?
/>
2.用Jscript寫ASP有沒有先天性的不足?
<
br?
/>
3.沒有了。
</
div
>
<
div?
id
="board2"
>
1.xhtml+css真的來了嗎?
<
br?
/>
2.Flash取代傳統網站
<
br?
/>
3.Flash何時才能連接數據庫?
</
div
>
<
div?
id
="board3"
>
1.程序員與小姐的10個相同。
<
br?
/>
2.中國的程序員與中國的足球?
</
div
>
<
div?
id
="board4"
>
1.男人的一半是女人——張賢亮。
<
br?
/>
2.當代女人的男性化與男人的女性化。
</
div
>
</
body
>
</
html
>
posted on 2007-04-01 16:45
千山鳥飛絕
閱讀(376)
評論(0)
編輯
收藏
所屬分類:
JavaScript
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發表評論。
網站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關文章:
QQ樹形8
QQ樹形7
QQ樹形6
QQ樹形5
QQ樹形4
QQ樹形3
QQ樹形2
QQ樹形
類似QQ的樹型菜單
javascript實現二級聯動下拉框
正在閱讀:
<
2025年5月
>
日
一
二
三
四
五
六
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(35)
給我留言
查看公開留言
查看私人留言
隨筆檔案
2009年9月 (1)
2008年7月 (1)
2008年3月 (3)
2007年11月 (2)
2007年10月 (1)
2007年5月 (3)
2007年4月 (4)
2007年3月 (6)
2007年2月 (1)
2006年12月 (1)
2006年9月 (1)
2006年8月 (3)
2006年7月 (1)
2006年6月 (2)
2006年5月 (3)
2006年3月 (2)
2006年1月 (1)
2005年12月 (3)
2005年11月 (6)
2005年10月 (5)
文章分類
Ajax(7)
CVSNT(1)
eclipse(6)
Hibernate(3)
ibatis
J2SE(8)
Jasperreport (2)
JavaMail(1)
JavaScript(11)
MySQL
Spring(1)
Struts(1)
Web Servers(2)
Web開發(16)
文章檔案
2007年6月 (2)
2007年5月 (1)
2007年4月 (12)
2007年3月 (5)
2006年8月 (6)
2006年7月 (1)
2006年6月 (2)
2006年5月 (3)
2006年3月 (2)
2006年1月 (6)
2005年12月 (4)
2005年11月 (1)
2005年10月 (8)
2005年9月 (6)
好友的blog
晚來
祝子
我的其他blog
千山鳥飛絕(天極)
千山鳥飛絕專欄
老婆的Blog
伊斕的BLOG
搜索
積分與排名
積分 - 775144
排名 - 56
最新評論
1.?re: javascript實現二級聯動下拉框
太棒了 好東西就該這樣
--精神病
2.?re: struts+spring+hibernate的web應用 Dao層代碼編寫
又是個只操作單個表的,不要老寫這些toy code!
--我暈
3.?re: 如何使用Log4j?
謝謝樓主,給新手不少的幫助,
--login
4.?re: 如何使用Log4j?
不錯,淺顯易懂,好文章!
--心誠則靈
5.?re: struts+spring+hibernate的web應用 Dao層代碼編寫
方法
--方法
閱讀排行榜
1.?Jboss4.0.2的端口的修改(13234)
2.?eclipse3.1.1版本的中文包已經出來了。(11764)
3.?struts2.0+spring2.0+hibernate3.1 web應用 示例代碼下載(11562)
4.?很奇怪的Struts2中文亂碼問題(9743)
5.?Struts2.0+spring2.0+hibernate3.1 ACEGI應用示例(權限判斷)(9050)
評論排行榜
1.?eclipse3.1.1版本的中文包已經出來了。(21)
2.?struts2.0+spring2.0+hibernate3.1 web應用 示例代碼下載(20)
3.?我的QQ寵物怎么變得這么大了????(13)
4.?如何下載in action等系列書籍的源代碼(10)
5.?很奇怪的Struts2中文亂碼問題(7)
Copyright ©2025 千山鳥飛絕 Powered By
博客園
模板提供:
滬江博客
主站蜘蛛池模板:
国产男女猛烈无遮挡免费网站
|
深夜A级毛片视频免费
|
亚洲人AV永久一区二区三区久久
|
中文字幕视频在线免费观看
|
亚洲乱码一二三四区麻豆
|
亚洲av无码乱码在线观看野外
|
久草免费福利视频
|
亚洲午夜精品一区二区麻豆
|
亚洲乱亚洲乱妇无码麻豆
|
一本无码人妻在中文字幕免费
|
国产黄在线观看免费观看不卡
|
亚洲人成网站色在线观看
|
亚洲中文久久精品无码
|
国产成在线观看免费视频
|
亚欧国产一级在线免费
|
国产成人精品日本亚洲11
|
亚洲日韩乱码中文无码蜜桃臀网站
|
韩国免费一级成人毛片
|
免费一级毛片在线播放视频
|
久久精品国产亚洲av天美18
|
亚洲视频在线观看免费视频
|
亚洲男女内射在线播放
|
免费电影在线观看网站
|
免费黄网站在线看
|
一个人看的www免费在线视频
|
亚洲中文无码永久免
|
久久久久亚洲AV无码专区体验
|
免费在线观看理论片
|
国产精品无码免费播放
|
一级做a爰全过程免费视频
|
国产黄片不卡免费
|
美女视频黄频a免费观看
|
亚洲综合无码一区二区痴汉
|
久久精品亚洲精品国产色婷
|
亚洲精品亚洲人成人网
|
亚洲国产V高清在线观看
|
日韩视频免费在线
|
女人张开腿等男人桶免费视频
|
亚洲精品免费网站
|
99精品视频在线观看免费播放
|
中国一级毛片免费看视频
|