前端开发人员和设计师一般使用 CSS 来创建HTML元素动画。然而,由于HTML在创建图案,形状,和其他方面的局限性,它们自然的转向了SVG,它提供了更多更有趣的能力。借助SVG,我们有更多的方式来创建新的动画。您可以同时使用内置的SVG动画功能和CSS3动画。
分类:
其他好文 时间:
2015-09-21 08:05:39
阅读次数:
262
最近,我看了一本关于软件工程实践者的思想的由周爱民先生的著作《大道至简》,看完里面的第一章后,颇有感触。深深体会到了我们软件人员的的思想建立,感受到了我们程序员的思维核心。 《大道至简》从一个简单的寓言故事《愚公移山》引入话题,通过这一篇著名寓言来形象生动的阐述了我们软件人员的生活,我们编程人...
分类:
其他好文 时间:
2015-09-21 08:06:07
阅读次数:
181
5。触摸事件 touchBegin 等一系列方法 1)手指按下 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; 2)按下并移动 - (void)touchesMoved:(NSSet *)to...
分类:
其他好文 时间:
2015-09-21 08:03:56
阅读次数:
150
原题链接在这里:https://leetcode.com/problems/generate-parentheses/采用递归调用helper, left, right, 代表还需要加几个左括号和几个右括号。起始赋值都为n, e.g. 若n=3, 就说明一共需要加三个左括号和三个右括号。递归函数he...
分类:
其他好文 时间:
2015-09-21 08:06:14
阅读次数:
143
“大道至简”是大道理(指基本原理、方法和规律)是极其简单的,简单到一两句话就能说明白。所谓“真传一句话,假传万卷书”。 一门技术一门学问,弄得很深奥是因为没有看穿实质,搞的很复杂是因为没有抓住程序的关键。在搏击较量中,出招过多就是多余无效的招数太多,有效的招数少;医生开的药方越多,就越是把握和好.....
分类:
其他好文 时间:
2015-09-21 08:05:13
阅读次数:
202
QQ群对话整理(删除一些简单的回应),对一些重要的地方,我做了一些加粗宝玉 2015/9/211:49:05 这次题目还有个问题就是如何读取Excel,我想对于很多同学来说是个困难 Java读取Excel我也没做过,但是如果我做的话,我会有几种思路 直接Google(技术文章尽量用Go...
分类:
其他好文 时间:
2015-09-21 07:01:47
阅读次数:
179
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may co...
分类:
其他好文 时间:
2015-09-21 07:02:58
阅读次数:
243
Email:qianlxc@126.comFree time:8:007:00a.m ~ 11:00 12:00p.mIntroduction:我是一个热情的人。开朗的人。活泼的人。(小编觉得用逗号分开比较好我喜欢交际,喜欢沟通。我的理想是做一个软件硬件都能有扎实基础,同时具备很强的工程实践能力与学...
分类:
其他好文 时间:
2015-09-21 07:02:48
阅读次数:
146
public List preorderTraversal(TreeNode root) { List ret = new ArrayList(); if(root == null) return ret; ...
分类:
其他好文 时间:
2015-09-21 07:00:14
阅读次数:
182
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transac...
分类:
其他好文 时间:
2015-09-21 07:00:25
阅读次数:
245
原题链接在这里:https://leetcode.com/problems/simplify-path/首先用string.split 把原有path 按照"/"分开 存入 String 数组strArr中。从肉往后扫描数组,遇到"." 和 " "直接跳过,遇到正常字符就压入栈中,遇到".."时若s...
分类:
其他好文 时间:
2015-09-21 07:01:15
阅读次数:
157
public List> levelOrder(TreeNode root) { List> ret = new ArrayList>(); if(root == null) return ret; ArrayDeque...
分类:
其他好文 时间:
2015-09-21 07:01:04
阅读次数:
120
QuestionGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:
其他好文 时间:
2015-09-21 07:01:22
阅读次数:
159
这几天解决 STM32 MCU的I2C 总线占用(bus BUSY) 问题,觉得是不错的学习,从文中可得知I2C问题的思考逻辑逻,文末并指出经常出错的问题点,在此分享给大家。
分类:
其他好文 时间:
2015-09-21 07:01:49
阅读次数:
602
原题链接在这里:https://leetcode.com/problems/reverse-words-in-a-string/把原有string s按照空格分开存入strArr中,再从strArr尾部开始一个一个加到StringBuikder中即可。Note: 1.这里学习了几个新的API, s....
分类:
其他好文 时间:
2015-09-21 06:58:42
阅读次数:
150
简介CSS(层叠样式表)是一门历史悠久的标记性语言,同 HTML 一道,被广泛应用于万维网(World Wide Web)中。HTML 主要负责文档结构的定义,CSS 负责文档表现形式或样式的定义。作为一门标记性语言,CSS 的语法相对简单,对使用者的要求较低,但同时也带来一些问题:CSS 需要书写...
分类:
其他好文 时间:
2015-09-21 07:00:01
阅读次数:
168
Given an Iterator class interface with methods: next() and hasNext(), design and implement a PeekingIterator that support the peek() operation -- it e...
分类:
其他好文 时间:
2015-09-21 07:00:04
阅读次数:
325