码迷,mamicode.com
首页 >  
搜索关键字:screen    ( 3001个结果
获得网页的高度和宽度
js: 屏幕分辨率为:screen.width * screen.height 屏幕可用大小:screen.availWidth * screen.availHeight 网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽(包括边线的宽):document.body.offsetWidt...
分类:Web程序   时间:2015-08-14 15:46:52    阅读次数:118
01_SDL_在屏幕上显示一张图片
#include?"SDL/SDL.h" #include?<string> //屏幕属性 const?int?SCREEN_WIDTH?=?640; const?int?SCREEN_HEIGHT?=?480; const?int?SCREEN_BPP?=?32; //能被使用到的面 SDL_Surface?*message?=?...
分类:其他好文   时间:2015-08-13 23:53:44    阅读次数:471
android-将系统和应用程序级的屏幕亮度
/** * 获取当前屏幕亮度模式 * SCREEN_BRIGHTNESS_MODE_AUTOMATIC=1 为自己主动调节屏幕亮度 * SCREEN_BRIGHTNESS_MODE_MANUAL=0 为手动调节屏幕亮度 */ private int getScreenMode(...
分类:移动开发   时间:2015-08-13 21:44:36    阅读次数:124
视频: SDL_VS2010_开发环境配置
本来打算写博文的,但是奈何自己文笔实在不行还是上个视频吧 以下是测试的代码: #include?<SDL.h> #include?<stdio.h> const?int?SCREEN_WIDTH?=?640; const?int?SCREEN_HEIGHT?=?480; int?main(?...
分类:其他好文   时间:2015-08-13 10:10:09    阅读次数:120
unity, use particleSystem with UGUI
要想在UGUI上添加particleSystem,需要将Canvas的Render Mode设置为Screen Space - Camera,并为其Render Camera指定一个Orthographic相机。Render Camera的Culling Mask设置为UI。为了保证UI的渲染在最前...
分类:编程语言   时间:2015-08-12 16:11:18    阅读次数:1776
JavaScript快速掌握
1.document.write(""); 输出语句 2.JS中的注释为//或/* */ 3.传统的HTML文档顺序是:document->html->(head,body) 4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document) 5.得到表单中元素的名称和值:document.getElementB...
分类:编程语言   时间:2015-08-12 11:37:30    阅读次数:160
JavaScript技巧手册
1.document.write(""); 输出语句 2.JS中的注释为//或/* */ 3.传统的HTML文档顺序是:document->html->(head,body) 4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document) 5.得到表单中元素的名称和值:document.getElementB...
分类:编程语言   时间:2015-08-12 11:32:05    阅读次数:430
Add Custom Tab in Detail screen for MIGO Transaction
1.Run Tcode se19 2.create enhancement and click on classic badi radio button 3.Enter badi name MB_MIGO_BADI and click on button create 4. give you Implementation Name 5. Click method of interface .it will ask you to create the enhancement implementatio...
分类:其他好文   时间:2015-08-11 21:32:15    阅读次数:249
源码编译安装 screen
本文转自:http://blog.163.com/oracle_wwf/blog/static/213030127201211191481101/[root@web1 soft]# wget ftp://ftp.gnu.org/pub/gnu/screen/screen-4.0.3.tar.gz[r...
分类:其他好文   时间:2015-08-11 18:16:01    阅读次数:255
C#WinForm获取屏幕大小
当前的屏幕除任务栏外的工作域大小 this.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width; this.Height = System.Windows.Forms.Screen.PrimaryScre...
分类:Windows程序   时间:2015-08-11 17:44:45    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!