////////////////////////////////////////////////////////////////// 记性不好的可以收藏下: 1,下拉框: 稍微解释一下: 1.select[@name='country'] option[@selected] 表示具有name 属性, ...
分类:
Web程序 时间:
2017-06-19 13:11:56
阅读次数:
262
先看效果: 这个是用Pivot来实现 1、自定义Pivot的样式,使用Blend工具生成模板,将HeaderTemplate的布局都隐藏 1 <Style x:Key="PivotStyle1" TargetType="Pivot"> 2 <Setter Property="Margin" Valu ...
分类:
其他好文 时间:
2017-06-18 18:56:44
阅读次数:
412
1.帧动画介绍: CAKeyframeAnimation它可以在多个值之间进行动画. 设置多值之间的属性为: 后面是一个数组,就是要设置的多个值. anim.values = @[]; 它还可以根据一个路径做动画. anim.path = 自己创建的路径. 2.图片抖动思路: 其实就是做一个左右旋转 ...
分类:
其他好文 时间:
2017-06-18 17:27:48
阅读次数:
174
#!/bin/sh echo -n radio: tput sc #保存当前光标位置 count=0 while true; do if [ $count -lt 10 ];then let count++; sleep 1; #休眠1秒 tput rc; #取出当前光标位置 tput ed #ra ...
分类:
其他好文 时间:
2017-06-18 16:16:17
阅读次数:
306
HTML“三表” 表单(form) 表格(table) 列表(list) 表单(form) 输入文件型表单<form action=“URL”(或空格) method=“post/get”> <input /> ......... .......... </form> get:从服务器上面取数据 p ...
分类:
Web程序 时间:
2017-06-17 22:29:25
阅读次数:
270
self.location = "toupiao_ok.php?name&title="+radio[i].title + ""; ...
分类:
Web程序 时间:
2017-06-17 10:01:26
阅读次数:
190
1、logcat (四类log buffer是main,radio。system。events) adb wait-for-device logcat adb logcat -v time > logcat.txt //默认是-b main -b system adb logcat -v time ...
分类:
移动开发 时间:
2017-06-16 22:01:58
阅读次数:
732
如果选择本科$scope.levelName="D"; 如果选择个人$scope.levelName="P"; ...
分类:
Web程序 时间:
2017-06-14 22:33:00
阅读次数:
266
ExtJs2.0好像不支持单选框组,因此用两个name相同单选框来实现单选框组 var radio1 = new Ext.form.Radio({boxLabel:'男',name:'sex',id:'yes',inputValue:'0',width : 150, height : 20}); v ...
分类:
Web程序 时间:
2017-06-14 16:38:28
阅读次数:
182
今天接着继续来,为大家准备了移动字幕效果和form表单,这么多天挺无聊的我为大家准备了点好玩的移动字幕效果。 一、移动字幕效果 <marquee direction="up(方向)" behavior="scroll(滚动方式)" scrolldelay="1000(滚动延迟)"></marquee ...
分类:
移动开发 时间:
2017-06-12 23:54:35
阅读次数:
323