码迷,mamicode.com
首页 >  
搜索关键字:direction    ( 1061个结果
弹性布局 兼容性写法
display: display:-webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; 定义子元素排列flex-direction: -webkit-box-orient... ...
分类:其他好文   时间:2017-12-06 20:08:19    阅读次数:321
Convex hull
we start from the leftmost point (or point with minimum x coordinate value) and we keep wrapping points in counterclockwise direction. The big questio ...
分类:其他好文   时间:2017-12-03 11:26:07    阅读次数:160
Flex 布局教程:实例篇
今天介绍常见布局的Flex写法。 你会看到,不管是什么布局,Flex往往都可以几行命令搞定。 我只列出代码,详细的语法解释请查阅《Flex布局教程:语法篇》。我的主要参考资料是Landon Schropp的文章和Solved by Flexbox。 一、骰子的布局 骰子的一面,最多可以放置9个点。 ...
分类:其他好文   时间:2017-12-01 18:39:48    阅读次数:196
UNITY引擎下简单FPS类游戏编写脚本一览
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Spin : MonoBehaviour { public float speed = 3.0f; // Use t... ...
分类:编程语言   时间:2017-11-29 22:48:36    阅读次数:229
CSS3动画
【前言】 通过CSS3,我们能够创建动画,可以在许多场合下替代动画图片、Flash动画和JS 【CSS3的@keyframes规则】 @keyframes规则用于创建动画,在@keyframes中规定某项CSS样式,就能创建由当前样式主键变化成新样式的动画效果。 【兼容性】 IE10、Firefox ...
分类:Web程序   时间:2017-11-29 18:11:08    阅读次数:187
AJAX分页带页码
///视图 GoToPage(1, "pageHtml") function GoToPage(pageindex, pageHtml) { $.ajax({ url: "/fenye/index", type: "post", data: { pageindex: pageindex }, suc ...
分类:Web程序   时间:2017-11-22 21:59:19    阅读次数:261
日志分析基础
日志分析基础________________________________________补充知识:________________________________________1、sed:处理缓冲区中的字符串,然后输出的标准输出。(1)行单位增删 sed ‘2,7d’ 但是删除,2起始行,7结 ...
分类:其他好文   时间:2017-11-21 01:10:49    阅读次数:156
flex布局以及相关属性
容器的属性: 父元素设置display:flex;子元素即可使用flex布局。 flex-direction 决定项目排列方向: row(默认值):主轴为水平方向,起点在左端。 row-reverse:主轴为水平方向,起点在右端。 column:主轴为垂直方向,起点在上沿。 column-rever ...
分类:其他好文   时间:2017-11-20 14:37:59    阅读次数:144
java基础--extension package guava(1)
1.guava 简介 Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括 collections, caching, primitives support, concurrency libraries, common annotations, string proces ...
分类:编程语言   时间:2017-11-19 13:33:14    阅读次数:252
弹性碰撞 poj 3684
Simon is doing a physics experiment with N identical balls with the same radius of R centimeters. Before the experiment, all N balls are fastened with ...
分类:其他好文   时间:2017-11-19 02:02:16    阅读次数:166
1061条   上一页 1 ... 48 49 50 51 52 ... 107 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!