最近沒有專案做,於是閒暇之餘學習了下angularjs知識,然後寫了一個文字上下無縫滾動的例子,主要寫的是一個小小的指令。
css程式碼:
主要控制樣式
<style type="text/css"> *{margin: 0px;padding: 0px;} .slide {width: 200px;height:200px;border:1px solid #dcdcdc;margin: 0 auto;margin-top: 50px;overflow: hidden;} .slide li {height: 49px;line-height: 49px;text-align: left;padding: 0 10px;font-size: 16px;list-style: none;border-bottom: 1px dashed #dcdcdc;cursor: pointer;} .slide li:hover{background: #ccc;} </style>
html程式碼:
<body ng-app="tip"> <div ng-controller = "TipController"> <div class="slide"> <ul class="slideUl"> <!-- 指令 --> <slide-follow id="slide" dataset-data = "datasetData"></slide-follow> </ul> </div> </div> </body>
當然我們的程式碼都是基於頁面中已經引入angular.js檔案下來運行的
slide-follow是我們需要實作的指令data = "datasetData" 是我們需要顯示的文字js程式碼
<script type="text/javascript"> var app =angular.module("tip",[]); app.controller("TipController",function($scope){ // 数据可以根据自己使用情况更换 $scope.datasetData = [ {option : "这个是第一条数据"}, {option : "这个是第二条数据"}, {option : "这个是第三条数据"}, {option : "这个是第四条数据"}, {option : "这个是第五条数据"}, {option : "这个是第六条数据"} ] }) .directive("slideFollow",function($timeout){ return { restrict : 'E', replace : true, scope : { id : "@", datasetData : "=" }, template : "<li ng-repeat = 'data in datasetData'>{{data.option}}</li>", link : function(scope,elem,attrs) { $timeout(function(){ var className = $("." + $(elem).parent()[0].className); var i = 0,sh; var liLength = className.children("li").length; var liHeight = className.children("li").height() + parseInt(className.children("li").css('border-bottom-width')); className.html(className.html() + className.html()); // 开启定时器 sh = setInterval(slide,4000); function slide(){ if (parseInt(className.css("margin-top")) > (-liLength * liHeight)) { i++; className.animate({ marginTop : -liHeight * i + "px" },"slow"); } else { i = 0; className.css("margin-top","0px"); } } // 清除定时器 className.hover(function(){ clearInterval(sh); },function(){ clearInterval(sh); sh = setInterval(slide,4000); }) },0) } } }) </script>
首先我們在controller中定義了需要顯示的文字,接下來我們就可以開始定義指令部分。
運作效果圖:
文字上下會無縫滾動,當滑鼠移入是,會清除計時器,停止滾動。
以上所述是小編給大家介紹的angularjs實現文字上下無縫滾動特效代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對PHP中文網的支持!
更多angularjs實現文字上下無縫滾動特效代碼相關文章請關注PHP中文網!