码迷,mamicode.com
首页 >  
搜索关键字:orientation    ( 691个结果
移动设备竖屏/横屏
1)设置竖屏/横屏->竖屏@mediascreenand(orientation:portrait){...}@mediascreenand(orientation:portrait){.a .b{position:static;clear:both;float:right;padding-top:...
分类:移动开发   时间:2014-11-19 12:06:26    阅读次数:161
Android学习笔记-常用控件
单选按钮Radio<RadioGroup android:id="@+id/genderGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/femaleButton" android:layout_width="wrap_content" android:..
分类:移动开发   时间:2014-11-19 02:17:11    阅读次数:279
Android学习笔记-Activity的布局
线性布局<?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <!-- android:id为控件..
分类:移动开发   时间:2014-11-17 19:43:38    阅读次数:283
SIFT 和SURF
1.SIFTSIFT(Scale-invariant feature transform)是一种检测局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描述子得到特征并进行图像特征点匹配,获...
分类:其他好文   时间:2014-11-14 10:41:23    阅读次数:286
js判断手机 横屏模式
if(window.orientation!=0){ var obj=document.getElementById('orientation'); alert('横屏内容太少啦,请使用竖屏观看!'); obj.style.display='block';}window.onori...
分类:移动开发   时间:2014-11-14 10:34:57    阅读次数:193
基于jQuery的判断iPad、iPhone、Android是横屏还是竖屏
function orient() {if (window.orientation == 90 || window.orientation == -90) {//ipad、iphone竖屏;Andriod横屏$("body").attr("class", "landscape");orientati...
分类:移动开发   时间:2014-11-14 10:26:23    阅读次数:183
android 界面布局 很好的一篇总结[转]
在android中我们常用的布局方式有这么几种: 1.LinearLayout (线性布局):(里面只可以有一个控件,并且不能设计这个控件的位置,控件会放到左上角) 线性布局分为水平线性和垂直线性二者的属性分别为:android:orientation="horizontal"andro...
分类:移动开发   时间:2014-11-12 22:35:15    阅读次数:358
android 自学笔记2-布局
1.LinearLayout<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <!--<Button--> <!--android:id="@+id/button1"-..
分类:移动开发   时间:2014-11-11 23:01:11    阅读次数:263
挑战一下吧!C#测试开发工程师英语面试题
1.Given a rectangular (cuboidal for the puritans) cake with a rectangular piece removed (any size or orientation), how would you cut the remainder of ...
分类:Windows程序   时间:2014-11-10 13:21:35    阅读次数:334
检测移动设备横竖屏
使用场景移动端的开发过程中,免不了要判断横竖屏,然后在执行其他操作,比如分别加载不同样式,横屏显示某些内容,竖屏显示其他内容等等。如何判断移动设备提供了两个对象,一个属性,一个事件:window.orientation 属于window对象上一个属性;共有三个值 :0为竖屏模式(portrait),...
分类:移动开发   时间:2014-11-07 18:43:31    阅读次数:182
691条   上一页 1 ... 59 60 61 62 63 ... 70 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!