您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關jQuery時間軸插件jQueryTimelinr怎么用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
這是一款可用于展示歷史和計劃的時間軸插件,尤其比較適合一些網站展示發展歷程、大事件等場景。該插件基于jQuery,可以滑動切換、水平和垂直滾動、支持鍵盤方向鍵。經過擴展后可以支持鼠標滾輪事件。
我們在body中建立一個p#timeline作為展示區,#dates為時間軸,示例中我們用年份作為主軸,#issues作為內容展示區,即展示對應主軸點年份的內容,注意id對應上。
<p id="timeline">
<ul id="dates">
<li><a href="#2011">2011</a></li>
<li><a href="#2012">2012</a></li>
</ul>
<ul id="issues">
<li id="2011">
<p>Lorem ipsum.</p>
</li>
<li id="2012">
<p>分享生活 留住感動</p>
</li>
</ul>
<a href="#" id="next">+</a> <!-- optional -->
<a href="#" id="prev">-</a> <!-- optional -->
</p>
jQuery Timelinr依賴于jQuery,所以在html中要先載入jQuery庫和jQuery Timelinr插件。
<script src="jquery.min.js"></script>
<script src="jquery.timelinr-0.9.53.js"></script>
接下來用CSS來布局,你可以設置不同的CSS來控制時間軸是否橫向排列還是縱向排列,根據需求自由發揮,以下給出的是縱向排列,即用于垂直滾動的樣式。
#timeline {width: 760px;height: 440px;overflow: hidden;margin: 40px auto;
position: relative;background: url('dot.gif') 110px top repeat-y;}
#dates {width: 115px;height: 440px;overflow: hidden;float: left;}
#dates li {list-style: none;width: 100px;height: 100px;line-height: 100px;font-size: 24px;
padding-right:20px; text-align:right; background: url('biggerdot.png') 108px center no-repeat;}
#dates a {line-height: 38px;padding-bottom: 10px;}
#dates .selected {font-size: 38px;}
#issues {width: 630px;height: 440px;overflow: hidden;float: right;}
#issues li {width: 630px;height: 440px;list-style: none;}
#issues li h2 {color: #ffcc00;font-size: 42px; height:52px; line-height:52px;
text-shadow: #000 1px 1px 2px;}
#issues li p {font-size: 14px;margin: 10px;line-height: 26px;}
調用時間軸插件非常簡單,執行以下代碼:
$(function(){
$().timelinr({
orientation:'vertical'
});
});
jQuery Timelinr提供了很多可設置的選項,可以根據需要進行設置。
選項 描述 默認值 orientation 時間軸方向,可為水平(horizontal)或垂直(vertical) horizontal containerDiv 時間軸展示主區域ID #timeline datesDiv 時間軸主軸ID #dates datesSelectedClass 當前主軸軸點的樣式 selected datesSpeed 主軸滾動速度,可為100~1000之間的數字,或者設置為'slow', 'normal' or 'fast' normal issuesDiv 主要內容展示區 #issues issuesSpeed 對應內容區的滾動速度,可為100~1000之間的數字,或者設置為'slow', 'normal' or 'fast' fast issuesTransparency 內容區的切入時的透明度,在0~1之間取值 0.2 issuesTransparencySpeed 內容區的切入時的透明度變化速度,100~1000之間的數字 500 prevButton 用于點擊展示前一項內容的按鈕ID #prev nextButton 用于點擊展示后一項內容的按鈕ID #next arrowKeys 是否支持方向鍵,true or false false startAt 初始化起點,即初始化軸點位置,數字 1 autoPlay 是否自動滾動,true or false false autoPlayDirection 滾動方向,forward or backward forward autoPlayPause 自動滾動時停留時間,毫秒 2000
支持滾輪驅動
此外,當前的jQuery Timelinr并不支持鼠標滾輪驅動,其實我們可以稍微對插件做下擴展就可以支持鼠標滾輪驅動,這里需要用到滾輪時間插件:jquery.mousewheel.js
下載該插件后,在頁面中導入。
<script src="jquery.mousewheel.js"></script>
然后,修改jquery.timelinr-0.9.53.js,大概在260行位置加入如下代碼:
//--------------Added by xuebuyuan.com 20130326----------
if(settings.mousewheel=="true") { //支持滾輪
$(settings.containerDiv).mousewheel(function(event, delta, deltaX, deltaY){
if(delta==1){
$(settings.prevButton).click();
}else{
$(settings.nextButton).click();
}
});
}
我們在示例中屏蔽了按鈕prevButton和nextButton,當設置了支持滾輪事件時,滾輪向上,相當于點擊prevButton,滾輪向下,相當于點擊了nextButton。
然后在32行處加入初始化選項:
mousewheel: 'false'
最后使用以下代碼后,整個時間軸就可支持滾輪事件了,查看demo。
$(function(){
$().timelinr({
mousewheel:'true'
});
});
關于jQuery時間軸插件jQueryTimelinr怎么用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。