众所周知,IE是个奇葩的浏览器,但是由于用户量很大,开发者还是不得不为IE考虑一下,于是,各种浏览器相关的操作,都要多一个特别的判断——专门针对IE浏览器的判断,这里的全屏也不例外。看代码:function fullScreen() { var el = document.documentElem....
分类:
Web程序 时间:
2015-05-28 16:08:16
阅读次数:
150
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
_:-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
第一:在程序代码中实现this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManag...
分类:
移动开发 时间:
2015-05-05 08:49:19
阅读次数:
183
本文介绍一个tinymce插件,用来组合显示下拉的按钮。基于4.x,不兼容3.x。以前配置toolbar功能按钮需要 toolbar1:"codeundoredofullscreen" plugins:"code,fullscreen" 页面就能显示配置 toolbar下拉的功能按钮集合,需要新写一...
分类:
其他好文 时间:
2015-04-26 13:40:24
阅读次数:
118
var container = Ext.create('Ext.Container',{ fullscreen:true, html: 'This container is scrollable!', scrollable:{direction:'vertical'}})
分类:
其他好文 时间:
2015-04-17 18:04:08
阅读次数:
117
//隐藏标题 getWindow().requestFeature(Window.FEATURE_NO_TITLE); // 全屏 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN...
分类:
移动开发 时间:
2015-04-13 16:28:37
阅读次数:
131
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,?WindowManager.LayoutParams.FLAG_FULLSCREEN);
?
//设置窗体始终点亮
getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN...
(1)代码中定义 (2)在“ueditor.config.js”文件中统一定义:toolbars:[ ['fullscreen','source','|','undo','redo','|', 'bold','italic','underline','fontborder'...
分类:
其他好文 时间:
2015-03-28 21:43:23
阅读次数:
223
实现全屏的代码:
// 全屏显示
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