想讓你的網頁更加的酷炫,想讓你的留言評論更加的具有互動性嗎,那麼請仔細研究下本代碼吧。
jQuery程式碼:
$(function(){
var $comment = $('#comment');
$('.bigger').click(function(){
if(!$comment.is(":animated")){
if($comment.height()
//$comment.height($comment.height() 50);
$comment.animate({height:" =50"},400);
}
}
});
$('.smaller').click(function(){
if(!$comment.is(":animated")){
if($comment.height() > 50){
//$comment.height($comment.height() - 50);
$comment.animate({height:"-=50"},400);
}
}
});
$('.up').click(function(){
if(!$comment.is(":animated")){
$comment.animate({scrollTop:"-=50"},400);
}
});
$('.down').click(function(){
if(!$comment.is(":animated")){
$comment.animate({scrollTop:" =50"},400);
}
});
});
HTML程式碼:
CSS代碼:
.bigger , .down , .up , .smaller{
background-color: #f1a55c;
}
程式碼奉上,具體如何使用,使用在何處,我就不多說了,小夥伴們自由發揮吧。