码迷,mamicode.com
首页 >  
搜索关键字:speed    ( 1368个结果
一个简单的返回顶部jQuery代码
本文演示jQuery返回顶部,当文章页比较长时间,可以方便用户返回网站的顶部,实现代码也不难,大家学习下! jQuery返回顶部 调用代码: $(function () { $(window).gotoTop({ showHeight: 150, //设置滚动高度时显示 speed: 200 /...
分类:Web程序   时间:2015-01-05 11:13:54    阅读次数:203
[ES6] 16. Object Enhancements
Define object:var color = "blue";var speed = 120;var car = {color, speed};console.log(car.color); // blueconsole.log(car.speed); // 120in ES5:var ca.....
分类:其他好文   时间:2015-01-01 22:27:54    阅读次数:251
Unity 制作Load等待小图标
直接上代码:using UnityEngine;using System.Collections;public class LoadRotate : MonoBehaviour{ public float speed = 8f; public RotateAxis direction =...
分类:编程语言   时间:2014-12-30 22:00:10    阅读次数:192
google重要的站点
https://developers.google.com/speed/https://developers.google.com/
分类:其他好文   时间:2014-12-28 23:39:35    阅读次数:137
贪吃蛇游戏
#include #include #include #include #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000 #define UP 0x4800 #define ESC 0x011b #define N 100/*贪吃蛇的最大长度*/ int i,key; int speed;/*游戏速...
分类:其他好文   时间:2014-12-27 17:37:10    阅读次数:237
laravel相关插件
1.Laravel-4-GeneratorsRapidly speed up your Laravel workflow with generatorshttps://packagist.org/packages/way/generatorshttp://lvwenhan.com/laravel/3...
分类:其他好文   时间:2014-12-26 20:15:49    阅读次数:130
linux挂载SD卡
(1)通过#fdisk -l命令确认板子上的linux系统是否识别SD卡MP805M板子插入SD卡后显示SD30 slot is without WPmmc1: new high speed SD card at address 5bc0mmcblk0: mmc1:5bc0 SD02G 1.83 G...
分类:系统相关   时间:2014-12-25 14:22:03    阅读次数:395
Web开发技术——Jquery5(动画)
jQuery animate() 方法允许您创建自定义的动画。 jQuery 动画 - animate() 方法 jQuery animate() 方法用于创建自定义动画。 语法: $(selector).animate({params},speed,callback); 必需的 params 参数...
分类:Web程序   时间:2014-12-25 09:52:31    阅读次数:263
Web开发技术——JQuery6(Callback函数、Chaning)
jQuery Callback 函数 Callback 函数在当前动画 100% 完成之后执行。 jQuery 动画的问题 许多 jQuery 函数涉及动画。这些函数也许会将 speed 或 duration 作为可选参数。 例子:$("p").hide("slow") speed 或 durati...
分类:Web程序   时间:2014-12-25 09:50:31    阅读次数:142
CS局域网射击游戏小结
一、解决由于子弹射击速度过快而无法打到物体的问题 //方法一: public float Speed = 800; Vector3 originalPos; void Update() { originalPos = transform.position;...
分类:其他好文   时间:2014-12-25 01:27:06    阅读次数:285
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!