码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
CSS图片翻转动画技术详解
因为不断有人问我,现在我补充一下:IE是支持这种技术的!尽管会很麻烦。需要做的是旋转front和back元素,而不是旋转整个容器元素。如果你使用的是最新版的IE,可以忽略这一节。IE10+是支持的,IE9完全不支持CSS动画。CSS动画非常的有趣;这种技术的美就在于,通过使用很多简单的属性,你能创建...
分类:Web程序   时间:2015-12-26 23:27:17    阅读次数:355
python2.7学习记录之三
1.连接数据库MySQLdb的是一个接口连接到MySQL数据库服务器从Python。它实现了Python数据库API V2.0,并建上的MySQL C API的顶端.下载地址:https://sourceforge.net/projects/mysql-python/2.MySQL-Front 出现...
分类:编程语言   时间:2015-12-24 22:19:24    阅读次数:239
Daily Scrumming* 2015.12.20(Day 12)
一、团队scrum meeting照片二、成员工作总结姓名任务ID迁入记录江昊任务1090https://github.com/buaaclubs-team/temp-front/commit/f71496851c5f89432aa57ed4e1c7d7782b44a346任务说明:完成活动、资讯详...
分类:其他好文   时间:2015-12-21 02:01:35    阅读次数:218
C++之路起航——标准模板库(vector)
vector(动态数组或向量):动态分配内存空间的线性储存结构。 需要包括头文件 定义: vector 变量名; Eg: vector s; //定义了一个数据类型为整形的动态数组;基本操作(红色标识为常用操作): s[i]直接以下标方式访问容器中的元素。 s.front() 返回首元素。 ...
分类:编程语言   时间:2015-12-20 17:34:20    阅读次数:130
Daily Scrumming* 2015.12.18(Day 10)
一、团队scrum meeting照片二、成员工作总结姓名任务ID迁入记录江昊任务1085https://github.com/buaaclubs-team/temp-front/commit/57b3c2db282394e97a434c19fa3c8a7e31bb5e09任务说明:完成首页主体部分...
分类:其他好文   时间:2015-12-19 09:49:55    阅读次数:205
POJ 3984 迷宫问题 --- BFS
/* POJ 3984 迷宫问题 --- BFS */#include int mapn[5][5];int x[100], y[100], pre[100];int front = 0;//队首int rear = 1;//队尾指向首元素的后一位int dx[4] = { 1, -1, 0, 0 ...
分类:其他好文   时间:2015-12-18 13:11:10    阅读次数:151
数据结构上机4队列-杨辉三角1
#include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;typedef struct { QElemType *base; int front; int rear...
分类:其他好文   时间:2015-12-17 00:30:49    阅读次数:246
数据结构上机4队列-杨辉三角2
#include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;//队列结构定义typedef struct { QElemType *base; int front; ...
分类:其他好文   时间:2015-12-17 00:20:07    阅读次数:199
LeetCode 232:Implement Queue using Stacks
?? Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue.pop() -- Removes the element from in front of queue.peek() -- Get the front element.em...
分类:其他好文   时间:2015-12-13 22:01:55    阅读次数:255
std::string 不支持back
string s = "abc";if ( s.back() == 'c' )...., 不支持back, 但是用VS2010好吧后来发现, string的back/front它是c++11加入到该列表, 所以gcc4.4不行然后gcc4.9, 也没有发现, 必须添加 -std=c++11工作
分类:其他好文   时间:2015-12-10 23:43:05    阅读次数:171
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!