码迷,mamicode.com
首页 > 2015年02月26日 > 全部分享
HTML标签marquee实现滚动效果
页面的自动滚动效果,可由javascript来实现,但是今天无意中发现了一个html标签 - 可以实现多种滚动效果,无需js控制。使用marquee标记不仅可以移动文字,也可以移动图片,表格等.语法:...; 说明:在标记之间添加要进行滚动的内容。重要属性:1.滚动方向direction(包括4个值...
分类:Web程序   时间:2015-02-26 18:13:00    阅读次数:156
phpstorm配置File Watcher在windows下自动编译sass文件
最近刚接触sass这个css预处理器,其在windows上需要先安装Ruby运行环境。装好Ruby和sass后,发现如果要将.sass文件转成css的话,还需要在控制台中输入命令,比较麻烦。由于我自己用的IDE是phpstorm,所以去其官网翻了下,可以用里面的File Watchers来实现自动转...
分类:Windows程序   时间:2015-02-26 18:15:28    阅读次数:1449
apk的安装删除
1,签名:java -jar signapk.jar platform.x509.pem platform.pk8 DownloadProvider.apk DownloadProvider-sign.apk2,adb connect 192.168.12.103adb remount3,apk安装...
分类:其他好文   时间:2015-02-26 18:13:07    阅读次数:224
yii2.0 composer安装
1.下载Composer-Setup进行全局安装(使用composer self-update命令可以更新composer到最新版本)2.命令行执行(基本模版或者高级模版):composer create-project --prefer-dist yiisoft/yii2-app-basic ba...
分类:其他好文   时间:2015-02-26 18:13:28    阅读次数:144
spice客户端连接
1.Linux客户机安装yum install virt-viewer连接#remote-viewer spice://IP:PORTremote-viewer spice://localhost:5902#virt-viewer Domainvirt-viewer cos_v12.windows客...
分类:其他好文   时间:2015-02-26 18:13:06    阅读次数:800
PHP版本中的VC6,VC9,VC11,TS,NTS区别
以windows为例,看看下载到得php zip的文件名php-5.4.4-nts-Win32-VC9-x86.zip VC6:legacy Visual Studio 6 compiler,是使用这个编译器编译的。VC9:Visual Studio 2008 compiler,就是这个编译器编译的...
分类:Web程序   时间:2015-02-26 18:14:53    阅读次数:177
22 nginx配置与集群
一:编译nginx ,并配置Cd /app/pcre-8.12./configureMake && make installCd nginx-1.2.7./configure --prefix=/usr/local/nginx --add-module=/app/ngx_http_consisten...
分类:其他好文   时间:2015-02-26 18:13:25    阅读次数:214
【转】(六)unity4.6Ugui中文教程文档-------概要-UGUI Animation Integration
原创至上,移步请戳:(六)unity4.6Ugui中文教程文档-------概要-UGUI Animation Integration5、Animation Integration(动画集成)动画允许控件的所有状态之间相互转换,充分使用unity的动画系统。这是最强大的的转换模式的在处理很多属性的同...
分类:编程语言   时间:2015-02-26 18:14:32    阅读次数:217
gulp自动刷新插件
gulp自动刷新的插件很多,但是感觉最好用的还是 browser-sync 插件。先安装 browser-sync插件:npm install browser-sync --save-dev安装 browser-sync插件可能遇到的问题http://www.cnblogs.com/ayseeing...
分类:其他好文   时间:2015-02-26 18:14:03    阅读次数:173
高性能mysql主存架构
原文:高性能mysql主存架构MySQL Replication(Master与Slave基本原理及配置) 主从mysql工作原理: 1:过程: (1)Mysql的复制(replication)是一个异步的复制,从一个Mysql节点复制到另一个Mysql节点。实现整个复制操作主要由三个进程完成的,其...
分类:数据库   时间:2015-02-26 18:13:43    阅读次数:154
ocp 1Z0-047 1-60题解析
1. You need to load information about new customers from the NEW_CUST table into the tables CUST and CUST_SPECIAL. If a new customer has a credit limi...
分类:其他好文   时间:2015-02-26 18:13:10    阅读次数:372
网络调试 adb connect
$su #stop adbd #setpropservice.adb.tcp.port 5555 #start adbd 然后在电脑端打开cmd,输入adb命令: #adb connect 这时手机已经和电脑连上了,用adb devices看看有没有连上手机,如果...
分类:数据库   时间:2015-02-26 18:12:21    阅读次数:305
前端不为人知的一面--前端冷知识集锦
转自:http://www.cnblogs.com/Wayou/p/things_you_dont_know_about_frontend.html前端已经被玩儿坏了!像console.log()可以向控制台输出图片等炫酷的玩意已经不是什么新闻了,像用||操作符给变量赋默认值也是人尽皆知的旧闻了,今...
分类:其他好文   时间:2015-02-26 18:11:42    阅读次数:278
工厂模式
单看简单工厂,工厂方法,抽象工厂定义和网上的一些小例子不难,但在我们项目里面和经理写的一个关于包的使用的一个抽象工厂完全傻眼了但看这三种工厂模式http://www.jellythink.com/archives/category/programdesign/designpattern 讲的很好我们...
分类:其他好文   时间:2015-02-26 18:12:00    阅读次数:158
[转] JSON转换
JSON简介
分类:Web程序   时间:2015-02-26 18:10:32    阅读次数:234
leetcode 72. Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他好文   时间:2015-02-26 18:10:39    阅读次数:137
js实现页面图片加载进度条
//html //js转自:tx lol
分类:Web程序   时间:2015-02-26 18:11:45    阅读次数:170
1694条   上一页 1 ... 30 31 32 33 34 35 36 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!