国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

論壇特效代碼收集(落伍轉發-不錯)

2019-11-21 02:26:20
字體:
來源:轉載
供稿:網友
1.overflow內容溢出時的設置(設定被設定對象是否顯示滾動條)
overflow-x水平方向內容溢出時的設置
overflow-y垂直方向內容溢出時的設置
以上三個屬性設置的值為visible(默認值)、scroll、hidden、auto。

2.scrollbar-3d-light-color立體滾動條亮邊的顏色(設置滾動條的顏色)
scrollbar-arrow-color上下按鈕上三角箭頭的顏色
scrollbar-base-color滾動條的基本顏色
scrollbar-dark-shadow-color立體滾動條強陰影的顏色
scrollbar-face-color立體滾動條凸出部分的顏色
scrollbar-highlight-color滾動條空白部分的顏色
scrollbar-shadow-color立體滾動條陰影的顏色

我們通過幾個實例來講解上述的樣式屬性:
1.讓瀏覽器窗口永遠都不出現滾動條
沒有水平滾動條
<body style="overflow-x:hidden">
沒有垂直滾動條
<body style="overflow-y:hidden">
沒有滾動條
<body style="overflow-x:hidden;overflow-y:hidden">或<body 
style="overflow:hidden">

2.設定多行文本框的滾動條

沒有水平滾動條
<textarea style="overflow-x:hidden"></textarea>

沒有垂直滾動條
<textarea style="overflow-y:hidden"></textarea>

沒有滾動條
<textarea style="overflow-x:hidden;overflow-y:hidden"></textarea>
或<textarea style="overflow:hidden"></textarea>

3.設定窗口滾動條的顏色
設置窗口滾動條的顏色為紅色<body style="scrollbar-base-color:red">
scrollbar-base-color設定的是基本色,一般情況下只需要設置這一個屬性就可以達到改變滾動條顏色的目的。
加上一點特別的效果:
<body style="scrollbar-arrow-color:yellow;scrollbar-base-color:lightsalmon">

4.在樣式表文件中定義好一個類,調用樣式表。
<style>
.coolscrollbar{scrollbar-arrow-color:yellow;scrollbar-base-color:lightsalmon;}
</style>
這樣調用:
<textarea class="coolscrollbar"></textarea>

無邊框窗口代碼
//第一步:把如下代碼加入<head></head>區域中 
<script language=javascript> 
minimizebar="minimize.gif"; //視窗右上角最小化「按鈕」的圖片 
minimizebar2="minimize2.gif"; //滑鼠懸停時最小化「按鈕」的圖片 
closebar="close.gif"; //視窗右上角關閉「按鈕」的圖片 
closebar2="close2.gif"; //滑鼠懸停時關閉「按鈕」的圖片 
icon="icon.gif"; //視窗左上角的小圖標 

function noBorderWin(fileName,w,h,titleBg,moveBg,titleColor,titleWord,scr) //定義一個彈出無邊視窗的函數,能數意義見下面「參數說明」,實際使用見最後的實例。 
/* 
------------------參數說明------------------- 
fileName :無邊視窗中顯示的文件。 
w     :視窗的寬度。 
h     :視窗的高度。 
titleBg :視窗「標題欄」的背景色以及視窗邊框顏色。 
moveBg :視窗拖動時「標題欄」的背景色以及視窗邊框顏色。 
titleColor :視窗「標題欄」文字的顏色。 
titleWord :視窗「標題欄」的文字。 
scr :是否出現卷軸。取值yes/no或者1/0。 
-------------------------------------------- 
*/ 

var contents="<html>"+ 
"<head>"+ 
"<title>"+titleWord+"</title>"+ 
"<META http-equiv=/"Content-Type/" content=/"text/html; charset=gb2312/">"+ 
"<object id=hhctrl type='application/x-oleobject' classid='clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11'><param name='Command' value='minimize'></object>"+ 
"</head>"+ 
"<body topmargin=0 leftmargin=0 scroll=no onselectstart='return false' ondragstart='return false'>"+ 
" <table height=100% width=100% cellpadding=0 cellspacing=1 bgcolor="+titleBg+" id=mainTab>"+ 
" <tr height=18 style=cursor:default; onmousedown='x=event.x;y=event.y;setCapture();mainTab.bgColor=/""+moveBg+"/";' onmouseup='releaseCapture();mainTab.bgColor=/""+titleBg+"/";' onmousemove='if(event.button==1)self.moveTo(screenLeft+event.x-x,screenTop+event.y-y);'>"+ 
" <td width=18 align=center><img height=12 width=12 border=0 src="+icon+"></td>"+ 
" <td width="+w+"><span style=font-size:12px;color:"+titleColor+";font-family:宋體;position:relative;top:1px;>"+titleWord+"</span></td>"+ 
" <td width=14><img border=0 width=12 height=12 alt=最小化 src="+minimizebar+" onmousedown=hhctrl.Click(); onmouseover=this.src='"+minimizebar2+"' onmouseout=this.src='"+minimizebar+"'></td>"+ 
" <td width=13><img border=0 width=12 height=12 alt=關閉 src="+closebar+" onmousedown=self.close(); onmouseover=this.src='"+closebar2+"' onmouseout=this.src='"+closebar+"'></td>"+ 
" </tr>"+ 
" <tr height=*>"+ 
" <td colspan=4>"+ 
" <iframe name=nbw_v6_iframe src="+fileName+" scrolling="+scr+" width=100% height=100% frameborder=0></iframe>"+ 
" </td>"+ 
" </tr>"+ 
" </table>"+ 
"</body>"+ 
"</html>"; 
pop=window.open("","_blank","fullscreen=yes"); 
pop.resizeTo(w,h); 
pop.moveTo((screen.width-w)/2,(screen.height-h)/2); 
pop.document.writeln(contents); 
if(pop.document.body.clientWidth!=w||pop.document.body.clientHeight!=h) //如果無邊視窗不是出現在純粹的IE視窗中 

temp=window.open("","nbw_v6"); 
temp.close(); 
window.showModalDialog("about:<"+"script language=javascript>window.open('','nbw_v6','fullscreen=yes');window.close();"+"</"+"script>","","dialogWidth:0px;dialogHeight:0px"); 
pop2=window.open("","nbw_v6"); 
pop2.resizeTo(w,h); 
pop2.moveTo((screen.width-w)/2,(screen.height-h)/2); 
pop2.document.writeln(contents); 
pop.close(); 


</script> 
//第二步:把如下代碼加入<body></body>區域中 
<a href=#none onclick=noBorderWin('rate.htm','400','240','#000000','#333333','#CCCCCC','一個無邊視窗的測試例子','yes');>open〈/a〉
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 水城县| 保德县| 永顺县| 灌云县| 台北县| 伽师县| 柳河县| 高台县| 鄢陵县| 吉木乃县| 马龙县| 获嘉县| 崇礼县| 滦平县| 盖州市| 鹤壁市| 定日县| 扎兰屯市| 竹山县| 彝良县| 金昌市| 连城县| 郧西县| 巨鹿县| 陇南市| 阳东县| 鹤壁市| 伊宁县| 云梦县| 宜川县| 灵川县| 固阳县| 兴山县| 水城县| 丹凤县| 江北区| 绥滨县| 嵊州市| 阜新市| 伊吾县| 万源市|