您好,欢迎来到99网。
搜索
您的当前位置:首页在AngularJS中如何实现跳转功能

在AngularJS中如何实现跳转功能

来源:99网
 这篇文章主要介绍了AngularJS实现的锚点楼层跳转功能,涉及AngularJS事件响应实现锚点跳转功能的相关操作技巧,需要的朋友可以参考下

本文实例讲述了AngularJS实现的锚点楼层跳转功能。分享给大家供大家参考,具体如下:

<!DOCTYPE html>
<html ng-app="myApp">
 <head>
 <meta charset="UTF-8">
 <title>anchor</title>
 <style>
 #wei p{
 width:100%;
 height:720px;
 background: red;
 color:#fff;
 text-align:center;
 line-height: 720px;
 margin:20px;
 font-size: 80px;
 }
 #wei ul{
 position: fixed;
 top:300px;
 right:60px;
 }
 #wei ul li{
 width:20px;
 display:block;
 height:20px;
 background: gray;
 color:#fff;
 text-align:center;
 line-height: 20px;
 border-radius: 50%;
 margin-bottom: 20px;
 cursor: pointer;
 }
 </style>
 </head>
 <body ng-controller="show">
 <p id="wei">
 <p ng-repeat="attr in arr" ng-attr-id="p{{attr}}">{{attr}}</p>
 <ul><!-- 定义右边的点 -->
 <li ng-repeat="attr in arr" ng-click="jump('p'+attr)">{{attr}}</li>
 </ul>
 </p>
 <script src="angular.min.js" type="text/javascript" charset="utf-8"></script>
 <script type="text/javascript">
 var app = angular.module('myApp',[]);
 app.controller('show',['$scope','$location','$anchorScroll',function($scope,$location,$anchorScroll){
 $scope.arr=[1,2,3,4,5];
 $scope.jump=function(id){
 //console.log(id);
 $location.hash(id);//添加锚点
 $anchorScroll(); //重新定义服务,解决当滑动时点击锚点无作用的bug
 }
 }]);
 </script>
 </body>
</html>

运行效果如下:

点击锚点2:

点击锚点3:

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

在Nginx中如何配置多站点vhost

在express+mockjs中如何实现后台数据发送

使用mock.js生成随机数据

Copyright © 2019- 99spj.com 版权所有 湘ICP备2022005869号-5

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务