码迷,mamicode.com
首页 >  
搜索关键字:alternate    ( 245个结果
animation-play-state
animation-play-state:css:.play-state{ -webkit-animation:f1 2s 0.5s infinite linear forwards alternate; -moz-animation:f1 2s 0.5s infinite line...
分类:其他好文   时间:2014-08-21 12:51:24    阅读次数:169
css3动画之1--animation小例子
1.首先看效果 2、代码及分析 正 在 加 载 中... ------------------------------------------------------------------------------alternate infinite alternat...
分类:Web程序   时间:2014-08-12 16:12:54    阅读次数:173
leetcode 刷题之路 63 Binary Tree Zigzag Level Order Traversal
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). zigzag层序遍历树 For example: Given binary...
分类:其他好文   时间:2014-08-09 23:19:59    阅读次数:363
QSS之QTreeView
/*QTreeView*/ QTreeView{ alternate-background-color:yellow; } QTreeView{ show-decoration-selected:1; } QTreeView::item{ border:1pxsolid#d9d9d9; border-top-color:transparent; border-bottom-color:transparent; } /*鼠标在QTreeView上面移动时的效果*/ QTreeView:..
分类:其他好文   时间:2014-08-01 20:13:22    阅读次数:2752
LeetCode :: Binary Tree Zigzag Level Order Traversal [tree, BFS]
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary...
分类:其他好文   时间:2014-07-20 22:41:23    阅读次数:303
uva 11728 - Alternate Task(数论)
题目链接:uva 11728 - Alternate Task 题目大意:给出S,求N,要求N所有的因子和为S。 解题思路:枚举因子i,所有整除i的数和加上i。 #include #include const int N = 1005; int n, c[N], v[N]; void init () { memset(c, 0, sizeof(c)); ...
分类:其他好文   时间:2014-07-02 16:55:04    阅读次数:167
SharePoint创建Alternate Access Mapping (AAM)备用访问映射
SharePoint的仓库是SQL Server中的内容数据库。这些数据库储存着组织所有的数据。合适的架构分类和验证可以提供两个不同的URL。终端用户输入合适的URL,被带到与URL对应关联的内容。这就是AAMs的意义。本文教你如何创建一个AAM以及相关知识。...
分类:移动开发   时间:2014-06-30 10:50:07    阅读次数:403
UVA 11728 - Alternate Task (数论)
Uva 11728 - Alternate Task 题目链接 题意:给定一个因子和,求出对应是哪个数字 思路:数字不可能大于因子和,对于每个数字去算出因子和,然后记录下来即可 代码: #include #include const int N = 1005; int n, ans[N]; void init() { memset(ans, -1, sizeo...
分类:其他好文   时间:2014-06-14 11:59:06    阅读次数:264
动画效果(兼容各个浏览器)
.destination1 .current{ display:block; animation:danru 2s linear infinite; -webkit-animation:danru 2s linear alternate ; ...
分类:其他好文   时间:2014-06-12 21:47:05    阅读次数:344
Uva 11489 - Integer Game
Two players, S and T, are playing a game where they make alternate moves. S plays first.  In this game, they start with an integer N. In each move, a player removes one digit from the integer and p...
分类:其他好文   时间:2014-06-10 06:31:29    阅读次数:302
245条   上一页 1 ... 22 23 24 25 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!