欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery實(shí)現(xiàn)隱藏與顯示動(dòng)畫(huà)效果/輸入框字符動(dòng)態(tài)遞減/導(dǎo)航按鈕切換

 更新時(shí)間:2013年07月01日 17:53:31   作者:  
jquery實(shí)現(xiàn)隱藏顯示層動(dòng)畫(huà)效果、仿新浪字符動(dòng)態(tài)輸入、tab效果等等,以下為所有代碼,感興趣的朋友可以練練手哈,希望對(duì)大家學(xué)習(xí)有所幫助
已經(jīng)有兩年多沒(méi)登陸csdn賬號(hào)了,中間做了些旁的事,可是現(xiàn)在卻還是回歸程序,但改做前端了,雖然很多東西都已忘得差不多了,但還是應(yīng)該擺正心態(tài),慢慢來(lái),在前端漫游,做一只快樂(lè)雙魚(yú)。
路是一步一步走出來(lái)的,知識(shí)是一點(diǎn)一滴積累的,記錄是筆財(cái)富,來(lái)吧,一起學(xué)著總結(jié)做筆記。

這幾天在寫(xiě)后臺(tái)文章的一些頁(yè)面,為了能得到更好的交互性,需要做一些效果,js無(wú)疑使不二之選,但由于瀏覽器的兼容性一直差強(qiáng)人意,所以選用jquery框架,通過(guò)css樣式、dom節(jié)點(diǎn)以及自身所帶函數(shù)就可以實(shí)現(xiàn)比較好的用戶(hù)體驗(yàn),此案例有三個(gè)功能點(diǎn)。分別為:

1.利用jquery自身的toggle()函數(shù)實(shí)現(xiàn)層的隱藏與顯示動(dòng)畫(huà);
2.仿新浪、騰訊微博輸入框字符動(dòng)態(tài)遞減效果(可作為單獨(dú)的js,引入即可通用);
3.實(shí)現(xiàn)幾個(gè)導(dǎo)航按鈕切換不同的內(nèi)容,類(lèi)似tab;

以下為所有代碼:
復(fù)制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用jquery實(shí)現(xiàn)兩個(gè)table的顯示與隱藏</title>
<script type="text/javascript" src="jquery-1.2.6.min.js" language="javascript"> </script>
<style>
/*整體table樣式*/
.mainbox {margin:5px 10px;overflow:hidden;zoom:1;_margin:5px;}
.mainnav_title {line-height:40px;height:40px;border-bottom:1px solid #eee;color:#ddd;}
.mainnav_title a {color:#004499;margin:0 5px;padding:4px 7px;background:#EFEFEF;}
.mainnav_title a:hover ,.mainnav_title a.on{background:#498CD0;color:#FFF;}
.table_form td{padding-left:12px}
.table_form th span{color:#FF0000}
.table_form th{font-weight:normal; text-align:right;padding-right:10px; color:#777}
.table_form td label{ vertical-align:middle}
.table_form td , .table_form th{padding:8px 0 5px 8px;line-height:22px;}
.table_form tbody td,.table_form tbody th{border-bottom:1px solid #eee; }
.colorpanel tbody td,.colorpanel tbody th{ padding:0;border-bottom: none;}
/*控制文章字?jǐn)?shù)輸入樣式*/
.textAfter{font-weight: 700;font-size: 22px;font-style: italic;color:#FF0000;font-family: Constantia, Georgia;}
.textCount{font-weight: 700;font-size: 22px;font-style: italic;font-family: Constantia, Georgia;}
/*文章列表頁(yè)面樣式*/
.article_search{border:1px solid #FFCC33; background-color:#FFFFCC;height:46px;margin:10px 0px 10px 0px;line-height:46px;padding:0px 15px 0px 15px;}
.advsetup{background-color:red; height:57px;line-height:57px;}
.search_table a:hover ,.search_table a.on{background:#498CD0;color:#FFF;}
.search_table a{margin:5px;padding:5px;height:15px;line-height:15px;}
.search a{color:#004499;margin:0 5px;padding:4px 7px;background:#EFEFEF;}
</style>
<script>
/*控制文章字?jǐn)?shù)輸入函數(shù)*/
$(function(){
$("td span").addClass('textCount');//頁(yè)面加載時(shí)為所有span標(biāo)簽添加新浪字體樣式
})
/*
words_deal函數(shù)是一個(gè)可以通用的關(guān)于仿新浪字符輸入的函數(shù),用在網(wǎng)站的文章編輯上可以提高用戶(hù)的交互性
dom:當(dāng)前要操作的對(duì)象
num:限制字符數(shù)量
id:通過(guò)傳入id值動(dòng)態(tài)添加需要操作的span
*/
function words_deal(dom,num,id)
{
var curLength=$(dom).val().length; //獲取文本框中輸入的文字總數(shù)量
if(curLength>num)//判斷是否大于限制字符數(shù)量
{ //如果大于限制級(jí)字符數(shù)量,獲得從0到該限制數(shù)量的所有字符串
var totalNum=$(dom).val().substr(0,num);
$(dom).val(totalNum); //將這些字符重新載入文本框,并彈框提示
alert("超過(guò)字?jǐn)?shù)限制,多出的字將被截?cái)啵? );
}
else
{
if(curLength>num-10)
{//如果輸入字符為倒數(shù)10個(gè)字符時(shí)改變樣式將字體變紅
$('.textCount_'+id).addClass("textAfter");
}
else
{//否則移除樣式
$('.textCount_'+id).removeClass("textAfter");
}
$(".textCount_"+id).text(num-$(dom).val().length); //如小于限制級(jí)字符數(shù)量,進(jìn)行累加計(jì)數(shù)顯示
}
}
//文章列表菜單欄效果控制函數(shù)
function fun_search(dom,id){
//控制搜索層顯示或隱藏
if(id!=1){
$(".article_search").toggle("fast",function(){
});
}
//控制切換樣式
var className = $(dom).attr("class");
if(className != 'on'){
$('.search_table a').removeClass('on');
$(dom).addClass('on');
}
}
</script>
</head>
<body>
<!--包含層start-->
<div class="mainbox">
<!--導(dǎo)航欄strat-->
<div id="nav" class="mainnav_title">
<ul>
<a href="javascript:;" onclick="toOpen(this,'1');" class="on">添加文章</a>
<a href="javascript:;" onclick="toOpen(this,'2');">高級(jí)設(shè)置</a>
<a href="javascript:;" onclick="fun_search(this,2);">搜索</a>
</ul>
</div>
<!--導(dǎo)航欄end-->
<!--搜索層start-->
<div class="article_search" style="display:none;">
<form id="searchForm" action="admin/user/0" method="post">
添加時(shí)間:
<input type="text" class="input-text" name="dateMin" id="dateMin" readonly="readonly"/> -
<input type="text" class="input-text" name="dateMax" id="dateMax" readonly="readonly"/>
<select name="channel_id2" id="channel_id2">
<option value="" >---&nbsp;全部欄目&nbsp;---</option>
<c:forEach items="${list}" var="list">
<option value="${list.id}">---&nbsp;${list.name}&nbsp;---</option>
</c:forEach>
</select>&nbsp;
<select name="choose">
<option value="" >---&nbsp;查詢(xún)條件&nbsp;---</option>
<option value="" >---&nbsp;&nbsp;&nbsp;&nbsp;ID&nbsp;&nbsp;&nbsp;&nbsp;---</option>
<option value="" >---&nbsp;&nbsp;&nbsp;標(biāo)題&nbsp;&nbsp;&nbsp;---</option>
<option value="" >---&nbsp;&nbsp;&nbsp;簡(jiǎn)介&nbsp;&nbsp;&nbsp;---</option>
<option value="" >---&nbsp;&nbsp;發(fā)布人&nbsp;&nbsp;---</option>
</select>&nbsp;
<input type="text" class="input-text" name="txtSearch" size="30"></input>
<input type="submit" class="button" value="搜索"></input>
</form>
</div>
<!--搜索層end-->
<!--第一個(gè)div層start-->
<table id="table_1" cellpadding=0 cellspacing=0 width="100%" class="table_form" >
<tr>
<th width="140"><span>*</span> 欄目</th>
<td>
<select name="channel" id="channel">
<option value="" >---&nbsp;全部欄目&nbsp;---</option>
<c:forEach items="${list}" var="list">
<option value=""></option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<th width="140"><span>*</span> 標(biāo)題</th>
<td>
<input name="title" id="title" class="input-text"" type="text" size="90" onkeyup="words_deal(this,40,1);"></input>剩余<span class="textCount_1">40</span>個(gè)字<br />
</td>
</tr>
<tr>
<th width="140">縮略圖:</th>
<td>
<table>
<td>
<input name="txtSmallPic" type="text" id="text" class="input-text" size="45"/>&nbsp;&nbsp;
<input name="btnUpdown" type="submit" value="本地上傳" class="button"/>&nbsp;&nbsp;
<input name="btnChoose" type="submit" value="站內(nèi)選擇" class="button"/>&nbsp;&nbsp;
<input name="btnCut" type="submit" value="裁切" class="button"/>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
<td><img src="thumbnail.ico" style="width:128px; height:128px;" /></td>
</table>
</td>
</tr>
<tr>
<th width="140">自定義屬性 </th>
<td>
<input id="chkDiyAtrr" type="checkbox" /> 首頁(yè)頭條推薦
<input id="chkDiyAtrr" type="checkbox" /> 首頁(yè)焦點(diǎn)圖推薦
<input id="chkDiyAtrr" type="checkbox" /> 視頻首頁(yè)每日熱點(diǎn)
<input id="chkDiyAtrr" type="checkbox" /> 視頻首頁(yè)頭條推薦
<input id="chkDiyAtrr" type="checkbox" /> 視頻首頁(yè)焦點(diǎn)圖
<input id="chkDiyAtrr" type="checkbox" /> 首頁(yè)圖片推薦<br></br>
<input id="chkDiyAtrr" type="checkbox" /> 欄目首頁(yè)推薦
<input id="chkDiyAtrr" type="checkbox" /> 視頻欄目精彩推薦
<input id="chkDiyAtrr" type="checkbox" /> 網(wǎng)站頂部推薦
</td>
</tr>
<tr>
<th width="140">TAG標(biāo)簽</th>
<td>
<input id="txtTag" class="input-text" type="text" size=""/> &nbsp;&nbsp;(','號(hào)分開(kāi),單個(gè)標(biāo)簽小于12字節(jié))
</td>
</tr>
</table>
<!--第一個(gè)div層end-->
<!--第二個(gè)div層start-->
<table id="table_2" style="display:none;" cellpadding=0 cellspacing=0 width="100%" class="table_form">
<tr>
<th width="140">附加選項(xiàng)</th>
<td>
<input id="chkDiyAtrr" type="checkbox" />&nbsp;&nbsp; 提取第一個(gè)圖片為縮略圖 &nbsp;&nbsp;
<input id="chkWatermark" type="checkbox" />&nbsp;&nbsp;圖片是否加水印
</td>
</tr>
<tr><th width="140">分頁(yè)選項(xiàng)</th>
<td>
<input id="rdoManual" type="radio" class="input-text" /> 手動(dòng) (分頁(yè)符為: #p#分頁(yè)標(biāo)題#e# )&nbsp;
<input id="rdoAutomatic" type="radio" class="input-text" />&nbsp;&nbsp;自動(dòng) 大小:&nbsp;&nbsp;
<input id="txtPage" type="text" style=" width:20px;" />K
</td>
</tr>
<tr>
<th width="140"> 評(píng)論選項(xiàng)</th>
<td>
<input id="rdoAllow" type="radio" class="input-text"/>&nbsp;&nbsp;允許評(píng)論 &nbsp;&nbsp;
<input id="rdoBan" type="radio" class="input-text" />&nbsp;&nbsp;禁止評(píng)論
</td>
</tr>
<tr>
<th width="140"><span>*</span> 標(biāo)題</th>
<td>
<input name="title" class="input-text"" type="text" size="90" id="TextArea" onkeyup="words_deal(this,20,2);"/>
剩余<span class="textCount_2">20</span>個(gè)字<br />
</td>
</tr>
<tr>
<th width="140"> 文章排序 </th>
<td colspan="2">
<select id="u108" class="u108">
<option selected="" value="默認(rèn)排序">默認(rèn)排序</option>
<option value="置頂一周">置頂一周</option>
<option value="置頂一月">置頂一月</option>
<option value="置頂一年">置頂一年</option>
</select>
</td>
</tr>
</table>
<!--第二個(gè)div層end-->
</div>
<!--包含層start-->
</body>
<script>
//切換界面
function toOpen(dom,id){
var className = $(dom).attr("class");
if(className != 'on'){
$('table[id^=table_]').hide();
$('.mainnav_title ul a').removeClass('on');
$('#table_'+id).show();
$(dom).addClass('on');
}
}
//文章列表菜單欄效果控制函數(shù)
function fun_search(dom,id){
//控制搜索層顯示或隱藏
if(id!=1){
$(".article_search").toggle("fast",function(){
});
}
//控制切換樣式
var className = $(dom).attr("class");
if(className != 'on'){
$('.search_table a').removeClass('on');
$(dom).addClass('on');
}
}
</script>
</html>

以下是運(yùn)行的效果圖:
 
ps:代碼規(guī)范很重要,養(yǎng)成加注釋的好習(xí)慣。

相關(guān)文章

最新評(píng)論