码迷,mamicode.com
首页 >  
搜索关键字:fullscreen    ( 149个结果
兼容IE浏览器的js浏览器全屏代码
众所周知,IE是个奇葩的浏览器,但是由于用户量很大,开发者还是不得不为IE考虑一下,于是,各种浏览器相关的操作,都要多一个特别的判断——专门针对IE浏览器的判断,这里的全屏也不例外。看代码:function fullScreen() { var el = document.documentElem....
分类:Web程序   时间:2015-05-28 16:08:16    阅读次数:150
HTML5 tricks for mobile
iOS 7.1的Safari为meta标签新增minimal-ui属性,在网页加载时隐藏地址栏与导航栏01. Creating a fullscreen experienceOnAndroidBrowser – the default browser on Android up to 4.3, an...
分类:Web程序   时间:2015-05-09 14:50:23    阅读次数:207
@Styles.Render("~/Content/bootstrap") 数组越界异常
_:-ms-fullscreen,:root input[type=date],_:-ms-fullscreen,:root input[type=time],_:-ms-fullscreen,:root input[type=datetime-local],_:-ms-fullscreen,:ro...
分类:编程语言   时间:2015-05-07 16:14:41    阅读次数:147
(安卓)Android 去掉窗口标题和程序全屏 ---亲测!
第一:在程序代码中实现this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManag...
分类:移动开发   时间:2015-05-05 08:49:19    阅读次数:183
Tinymce group plugin
本文介绍一个tinymce插件,用来组合显示下拉的按钮。基于4.x,不兼容3.x。以前配置toolbar功能按钮需要 toolbar1:"codeundoredofullscreen" plugins:"code,fullscreen" 页面就能显示配置 toolbar下拉的功能按钮集合,需要新写一...
分类:其他好文   时间:2015-04-26 13:40:24    阅读次数:118
sencha---滚动条
var container = Ext.create('Ext.Container',{ fullscreen:true, html: 'This container is scrollable!', scrollable:{direction:'vertical'}})
分类:其他好文   时间:2015-04-17 18:04:08    阅读次数:117
Android隐藏标题设置全屏,设置背景
//隐藏标题 getWindow().requestFeature(Window.FEATURE_NO_TITLE); // 全屏 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN...
分类:移动开发   时间:2015-04-13 16:28:37    阅读次数:131
getWindow().setFlags
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,?WindowManager.LayoutParams.FLAG_FULLSCREEN); ? //设置窗体始终点亮 getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN...
分类:Windows程序   时间:2015-04-01 15:38:30    阅读次数:165
Ueditor--toolbars
(1)代码中定义 (2)在“ueditor.config.js”文件中统一定义:toolbars:[ ['fullscreen','source','|','undo','redo','|', 'bold','italic','underline','fontborder'...
分类:其他好文   时间:2015-03-28 21:43:23    阅读次数:223
【Android 个人理解(三)】从源码剖析如何实现实现全屏效果
实现全屏的代码: // 全屏显示 requestWindowFeature(Window.FEATURE_NO_TITLE); //turning off the title at the top of the screen. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.Lay...
分类:移动开发   时间:2015-03-27 22:25:15    阅读次数:273
149条   上一页 1 ... 9 10 11 12 13 ... 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!