基于jQuery實(shí)現(xiàn)收縮展開功能
更新時間:2016年03月18日 15:08:24 作者:何問起
這篇文章主要介紹了基于jQuery實(shí)現(xiàn)收縮展開功能的相關(guān)資料,需要的朋友可以參考下
本文實(shí)例向大家分享了一款基于jQuery實(shí)現(xiàn)收起展開功能特效,供大家參考,具體內(nèi)容如下
效果圖:

點(diǎn)擊倒三角可以進(jìn)行展開操作
具體代碼:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jQuery實(shí)現(xiàn)收起展開功能 - 何問起</title><base target="_blank" />
<meta charset="utf-8" />
<style>
a{color:darkgreen}
.hovertreeContent{width:300px;text-indent:2em;margin:5px auto;height:60px;overflow:hidden;position:relative;border:1px solid silver;}
.hewenqiToggle{height:20px;background-color:#f0f0f0;border-top:1px solid silver;position:absolute;bottom:0px;width:100%;}
.triangle-down-hovertree { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 16px solid #999;position:absolute;right:0px;left:0px;margin:0px auto; top:2px;cursor:pointer;}
.triangle-up-hovertree { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 16px solid #999; position:absolute;right:0px;left:0px;margin:0px auto;top:2px; }
</style>
<script src="http://hovertree.com/ziyuan/jquery/jquery-1.12.1.min.js"></script>
</head>
<body>
<div style="width:730px;margin:0px auto;text-align:center;">
<h2>jQuery實(shí)現(xiàn)收起展開功能</h2>
<a href="#">原文</a> <a href="#">首頁</a> <a href="#">特效</a>
</div>
<div class="hovertreeContent">
受到網(wǎng)店的影響,服裝店的生意逐漸有所下降,老板找何問起去談,大概是準(zhǔn)備跟上網(wǎng)購潮流,讓何問起準(zhǔn)備一下,
要在網(wǎng)上開網(wǎng)店,要為服裝店建立網(wǎng)站。
何問起也沒說自己經(jīng)驗(yàn)不足,只說會積極準(zhǔn)備。于是抓緊時間查找資料,學(xué)習(xí)練習(xí)。
<div class="hewenqiToggle"><span class="triangle-down-hovertree"></span></div>
</div>
<script>
$(".hewenqiToggle").on("click", function () {
if ($(".hewenqiToggle").css('position') == "absolute") {
$(".hovertreeContent").height("auto");
$(".hewenqiToggle").css({ "position": "relative" });
$(".hewenqiToggle").find("span").removeClass('triangle-down-hovertree').addClass('triangle-up-hovertree');
}
else
{
$(".hovertreeContent").height("60");
$(".hewenqiToggle").css({ "position": "absolute" });
$(".hewenqiToggle").find("span").removeClass('triangle-up-hovertree').addClass('triangle-down-hovertree');
}
})
</script>
</body>
</html>
以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)jquery程序設(shè)計(jì)有所幫助。
相關(guān)文章
jquery+php隨機(jī)生成紅包金額數(shù)量代碼分享
這篇文章主要介紹了jquery+php隨機(jī)生成紅包金額數(shù)量實(shí)現(xiàn)代碼,紅包數(shù)量與金錢可以自己設(shè)定,很實(shí)用的代碼,推薦給大家,有需要的小伙伴可以參考下。2015-08-08
jquery實(shí)現(xiàn)手風(fēng)琴效果實(shí)例代碼
這篇文章介紹了jquery實(shí)現(xiàn)手風(fēng)琴效果實(shí)例代碼,有需要的朋友可以參考一下2013-11-11
jquery操作checked屬性以及disabled屬性的多種方法
這篇文章主要介紹了jquery控制checked屬性以及disabled屬性的多種方法,下面只提到checked,其實(shí)disabled在jquery里的用法和checked是一模一樣的,需要的朋友可以參考下2014-06-06
jQuery實(shí)現(xiàn)復(fù)制到粘貼板功能
這篇文章主要為大家詳細(xì)介紹了jquery實(shí)現(xiàn)復(fù)制到粘貼板功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-02-02

