码迷,mamicode.com
首页 >  
搜索关键字:prevent    ( 462个结果
Volatile variables
Volatile variables apply another type of memory constraint to individual variables. The compiler often optimizes code by loading the values for variab ...
分类:其他好文   时间:2018-01-26 20:50:57    阅读次数:149
Unity2017.1官方UGUI文档翻译——Dropdown
Dropdown 下拉菜单 The Dropdown can be used to let the user choose a single option from a list of options. Dropdown可以让用户从一个列表的选项中选出一个选项。 The control shows ...
分类:编程语言   时间:2018-01-25 23:15:11    阅读次数:884
[代码笔记]原生JS实现验证框架 checkFun(待优化)
css代码: html代码: JS调用: ...
分类:Web程序   时间:2018-01-23 20:25:26    阅读次数:263
[osg][osgEarth][原]基于OE自定义自由飞行漫游器(初级版)
由于受够了OE的漫游器,想搞个可以在全球飞行的漫游器,所以就做了一个: 请无视我的起名规则······ 类头文件:EarthWalkManipulator.h 类实现:EarthWalkManipulator.cpp 使用:main.cpp 由于是初级版,所以有些操作还是比较反人类··· 运行起来是 ...
分类:其他好文   时间:2018-01-23 18:26:43    阅读次数:443
HTML5 拖拽简单总结
//感觉拖拽挺有意思,刚开始玩,简单总结一下,有什么不对的地方欢迎指正,谢谢 后续继续更新<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .square{ width: ...
分类:Web程序   时间:2018-01-20 12:46:51    阅读次数:124
Java面试& HashMap实现原理分析
1. HashMap的数据结构 数据结构中有数组和链表来实现对数据的存储,但这两者基本上是两个极端。 数组 数组存储区间是连续的,占用内存严重,故空间复杂的很大。但数组的二分查找时间复杂度小,为O(1);数组的特点是:寻址容易,插入和删除困难; 链表 链表存储区间离散,占用内存比较宽松,故空间复杂度 ...
分类:编程语言   时间:2018-01-18 15:05:07    阅读次数:228
touch 方向判断方法
touch :touchstart、touchend、touchmove $("body").on("touchstart", function(e) { e.preventDefault(); startX = e.originalEvent.changedTouches[0].pageX, st ...
分类:其他好文   时间:2018-01-17 00:08:06    阅读次数:179
解决 Cordova 打包 vue项目为 APP 后,在安卓平台下 touchMove 事件不生效的问题
Cordova + vue 打包成 APP 后在部分安卓机上面,左右滑动无法正常的实现页面滚动逻辑。 解决方案: 在 touchMove 的时候,通过 event.preventDefault() 来解决 注意: transform 事件是有兼容性的,可不要忘记加前缀。 ...
分类:移动开发   时间:2018-01-06 14:26:19    阅读次数:205
源码编译安装mysql-5.7.14
1.下载并上传 mysql-5.7.14.tar.gz view plain copytar -zxf msql-5.7.14.tar.gz  2.安装依赖包 view plain copyyum -y install gcc gcc-c++ ncurses 
分类:数据库   时间:2018-01-05 10:26:59    阅读次数:246
10 Easy Steps to a Complete Understanding of SQL
原文出处:http://tech.pro/tutorial/1555/10-easy-steps-to-a-complete-understanding-of-sql(已经失效,现在收集如下) Too many programmers think SQL is a bit of a beast. I ...
分类:数据库   时间:2018-01-03 15:57:38    阅读次数:185
462条   上一页 1 ... 21 22 23 24 25 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!