码迷,mamicode.com
首页 >  
搜索关键字:xpages repeat    ( 2431个结果
Cg入门21:Fragment shader - 2D纹理采样
体纹理:是啥?tex2D 以前只能在Fragment程序中纹理采样UV坐标系:其实点为左下角,范围为【0,1】,U为x轴,V为y轴Texture.wrapMode 循环模式:TextureWrapMode.Clamp:设置纹理充满拉伸使用TextureWrapMode.Repeat:纹理重复平铺使用如果采用Repeat,那么等于U>=1的情况就会用纹理图在右边在平铺一张图Texture.filte...
分类:其他好文   时间:2016-03-23 22:21:18    阅读次数:406
回到顶部效果
<style> .box { width: 1190px; margin: 0 auto; } #btn { width: 40px; height: 40px; background: url(images.png) no-repeat left top;//回到顶部的小箭头 position:
分类:其他好文   时间:2016-03-22 15:06:43    阅读次数:174
angular 如何获取使用filter过滤后的ng-repeat的数据长度
在做项目的过程中,被产品要求在内容为空的过程中显示提示信息,然哦户内容使用ng-repeat循环输出的,并且使用了filter过滤。后在谷歌上找到解决方案,如下: ?之前代码如下显示: <ul> <li ng-repeat="tagChoose in evaluateObj.tagChooseLis
分类:其他好文   时间:2016-03-22 12:26:50    阅读次数:212
[Angular 2] Using ng-for to repeat template elements
This lesson covers Angular 2’s version of looping through data in your templates: ng-for. It’s conceptually the same as Angular 1’s ng-repeat, but you
分类:其他好文   时间:2016-03-21 07:03:53    阅读次数:167
[angularjs] angularjs系列笔记(二)指令
重复HTML元素 ng-repeat指令可以重复HTML元素 创建自定义指令 使用.directive()函数来自定义指令,要调用自定义指令,html元素上需要添加自定义指令名,使用驼峰法来命名一个指令 限制使用,默认是元素名调用和属性调用
分类:Web程序   时间:2016-03-20 01:56:01    阅读次数:211
【LeetCode题意分析&解答】39. Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeat
分类:其他好文   时间:2016-03-18 00:27:27    阅读次数:147
jbpm timer实现自动提醒审批功能
jbpmtimer实现自动提醒审批功能jbpm采用<timer>标签进行定时管理。timer可以被用于decision、fork&join、task等各种元素,可以设置开始时间duedate和频率repeat,定时器动作可以是所支持的任何动作元素,如action或script,甚至会运行自行设置的其他动作。定时器通过..
分类:其他好文   时间:2016-03-15 00:45:53    阅读次数:399
nodeJs 报maximum call stack size exceeded js
先看错误 查了下资料说是什么js堆栈异常,是递归造成的啥的,但我程序里没用到啥递归,整了老半天将collection-repeat换成ng-repeat然后就好啦,具体原因待探讨。
分类:Web程序   时间:2016-03-10 14:44:24    阅读次数:200
ionicPopup弹出列表选择对话框
vm.popupForWarehouse = $ionicPopup.show({ template: '<div class="list"> '+ ' <ion-item ng-repeat="item in warehouselist" ng-click="vm.selectWarehouse1
分类:其他好文   时间:2016-03-10 14:43:56    阅读次数:1258
angularjs animation
http://augus.github.io/ngAnimate/ http://www.nganimate.org/angularjs/ng-repeat/move http://codepen.io/ShMcK/pen/kHxKy http://codepen.io/kevinsmets/pen
分类:Web程序   时间:2016-03-05 06:50:51    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!