码迷,mamicode.com
首页 >  
搜索关键字:screen    ( 3001个结果
WPF 中关于 Screen 的问题(主副屏)
WPF 及 Winform 的 PrimaryScreen 不同用法 https://blog.csdn.net/wzhiu/article/details/7187291 WPF: Winform: Show and Maximize WPF window on a specific screen ...
分类:Windows程序   时间:2018-09-05 21:44:32    阅读次数:695
利用@media screen实现网页布局的自适应
优点:无需插件和手机主题,对移动设备友好,能够适应各种窗口大小。只需在CSS中添加@media screen属性,根据浏览器宽度判断并输出不同的长宽值 准备工作1:设置Meta标签 首先我们在使用Media的时候需要先设置下面这段代码,来兼容移动设备的展示效果: <meta name="viewpo ...
分类:Web程序   时间:2018-09-04 22:31:45    阅读次数:235
UITableView的frame改变的坑,实时刷新UI frame
self.tableHeaderView.frame = CGRectMake(0, 0, JYEScreenWidth, self.userInfoView.frame.size.height + frame.size.height + self.footerView.frame.size.hei ...
分类:其他好文   时间:2018-09-03 15:34:50    阅读次数:825
css 根据屏幕 调整
@media screen and (min-width: 991px) and (max-width: 1024px) { .container { max-width: 991px; } }@media screen and (min-width: 1025px) and (max-width: ...
分类:Web程序   时间:2018-09-03 11:12:27    阅读次数:267
BOM:Browser Object Model(浏览器对象模型)
1、window对象 2、navigator对象3、 screen对象4、history对象5、 location对象6、 document对象 window对象1、属性 * pageXOffset:页面相对于视口的位置,x轴 * pageYOffset:页面相对于视口的位置,y轴 * screen ...
分类:其他好文   时间:2018-09-03 02:24:52    阅读次数:164
e673. Getting Amount of Free Accelerated Image Memory
Images in accelerated memory are much faster to draw on the screen. However, accelerated memory is typically limited and it is usually necessary for a ...
分类:其他好文   时间:2018-09-03 00:04:02    阅读次数:182
e674. 创建并绘制加速图像
Images in accelerated memory are much faster to draw on the screen. This example demonstrates how to take an image and make an accelerated copy of it ...
分类:其他好文   时间:2018-09-02 23:59:46    阅读次数:343
e575. The Quintessential Drawing Program
To draw on the screen, it is first necessary to subclass a JComponent and override its paint() method. The paint() method is automatically called by t ...
分类:Windows程序   时间:2018-09-02 23:55:09    阅读次数:206
屏幕自适应
1、js 2、css ...
分类:其他好文   时间:2018-09-01 20:36:15    阅读次数:110
js判断是否是iphoneX机型
function isIphoneX(){ return /iphone/gi.test(navigator.userAgent) && (screen.height == 812 && screen.width == 375) } ...
分类:Web程序   时间:2018-08-29 14:51:55    阅读次数:1209
3001条   上一页 1 ... 65 66 67 68 69 ... 301 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!