<div class="main">
<div class="side">
<p>
<label>Search:</label>
<input ng-model="filterKey" type="text" style="width:150px; ">
</p>
<p>
<label>Sort by:</label>
<select ng-model="sortKey">
<option value="price">price</option>
<option value="name" ng-selected="true">name</option>
</select>
</p>
</div>
<div class="content">
<ul>
<li ng-repeat="item in data" ng-click="$location.path('detail/'+item.id)">
<img ng-src={{item.img}}>
<div>
<h2>名字:{{item.name}}</h2>
<p>性能:{{item.title}}</p>
<p>价格:{{item.price | currency}}</p>
</div>
</li>
</ul>
</div>
</div>
<slide></slide>是一个自定义指令,实现轮播图的功能
<div class="detail">
<slide links='links' w='200' h='200'></slide>
<div class="text">
<h2>设备:{{data.name}}</h2>
<p>性能:{{data.desc}}</p>
</div>
</div>
{
"id" : 1,
"name" : "aaa",
"title" : "bbb",
"desc" : "ccc",
"img" : "img/a.jpg",
"price" : 100,
"showList" : "[{"url":"img/b.jpg"},{"url":"img/c.jpg"}]"
}
m1.config(['$routeProvider',function($routeProvider){
$routeProvider
.when('/index',{
templateUrl : 'template/index.html',
controller : 'index'
})
.when('/detail/:str',{
templateUrl : 'template/detail.html',
controller : 'detail'
})
.otherwise({
redirectTo : '/index'
});
}]);
var arr = [];
var objRe = $resource('infor.json');
$scope.data = arr = objRe.query(); //获得data数据后首页即可进行渲染
$scope.$watch('filterKey',function(){ //监听输入框的数据变化,完成数据的筛选
if($scope.filterKey){
$scope.data = $filter('filter')(arr,$scope.filterKey);
}else{
$scope.data = arr;
}
})
$scope.$watch('sortKey',function(){ //监听select下拉框的数据变化,完成数据的排序
if($scope.sortKey){
$scope.data = $filter('orderBy')($scope.data,$scope.sortKey);
}else{
$scope.data = arr;
}
})
//这里有个需要注意的地方,我们用一个数组arr作为媒介,避免bug
$scope.$location = $location; //将$location挂载到$scope下,模板中便可使用$location提供的方法
<li ng-repeat="item in data" ng-click="$location.path('detail/'+item.id)"> --点击的时候将列表跳转到详情页
m1.controller('detail',['$scope','$resource','$location',function($scope,$resource,$location){
var id = parseInt($location.path().substring(8)); //获取索引
$resource('infor.json').query(function(data){
$scope.data = data[id];
$scope.links = eval($scope.data.showList); //自定义指令需要用到此数据
});
}]);
//注意:$resource.query()为异步操作。数据相关的逻辑需要在回调中完成,否则可能会出现数据undefined的情况。
<div class="slide">
<ul>
<li ng-repeat="item in links">
<img ng-src={{item.url}}>
</li>
</ul>
</div>
m1.directive('slide',function(){
return {
restrict : 'E',
templateUrl : 'template/slide.html',
replace : true,
scope : {
links : '=',
w : '@',
h : '@'
},
link : function(scope,element,attris){
setTimeout(function(){
var w = scope.links.length * scope.w;
var h = scope.h;
var iNow = 0;
$(element).css({'width':scope.w,'height':h,'position':'relative','overflow':'hidden'})
$(element).find('ul').css({'width':w,'height':h,'position':'absolute'});
setTimeout(function(){
$(element).find('li').css({'width':scope.w,'height':h,'float':'left'});
$(element).find('img').css({'width':scope.w,'height':h});
},0);
setInterval(function(){
iNow++;
$(element).find('ul').animate({'left':-iNow*scope.w},function(){
if(iNow==scope.links.length-1){
$(element).find('ul').css('left',0);
iNow = 0;
}
});
},1000)
},50)
}
}
})
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有