码迷,mamicode.com
首页 > 其他好文 > 详细

angular——话题精选(动态更换显示一条)

时间:2016-04-20 00:24:02      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

 

<!-------------------- 话题精选 ----------------------->
        <section class="white_bg topics ">
            <header class="fix_container ">
                <div class="fix_top_left" id="topics_mark"><i class="icon-topic"></i></div>
                <ul id="topic_title" >
                    <li ng-repeat="topic in data.topics" class="font_16_14 black_title one_line_text" ng-click="action.toPage(‘tab.home-recommend-topic-detail‘)">
                        #{{topic}}#
                    </li>
                </ul>
                <button class="btn blue_text_btn fix_top_right" ng-click="">更多</button>
            </header>
        </section>
// 话题更新
        $scope.data.topics = [
            "为什么政府突然不让你买房了啊啊啊啊啊",
            "A股趋势何去何从",
            "谁才是中国股市最大赢家"
        ];

        function NewsTickerAutoPlay() {
            $("#topic_title li:first-child").remove().appendTo("#topic_title");
        }

        setInterval(function () {
            NewsTickerAutoPlay()
        }, 5000);

 

angular——话题精选(动态更换显示一条)

标签:

原文地址:http://www.cnblogs.com/hu-clover/p/5410681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!