码迷,mamicode.com
首页 >  
搜索关键字:legend position    ( 10042个结果
解决IOS下不支持fixed的问题
我们公司有一个页面底部用到了fixed样式,每当弹出键盘的时候,IOS下fixed就会走样(据我所知android没有该问题)。为此之前我经过产品的同意做了简单的处理(方法1)。方法一:focus的时候让fixed块position变为relative,这是最简单的处理方法。下面是我的小demo ....
分类:移动开发   时间:2014-07-22 22:52:34    阅读次数:215
题目1004:Median
题目描述: Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} is...
分类:其他好文   时间:2014-07-22 22:48:53    阅读次数:207
移动web页面支持弹性滚动的3个方案
position:fixed 和 overflow:auto 进行简单的布局实现我们需要的效果,而在手机端遇到的问题如下: ios4 和 android2.2 以下不支持 position:fixed ios 不支持 overflow:auto ios4 和 android2.3 以下以及不支持 ...
分类:移动开发   时间:2014-07-22 08:22:35    阅读次数:251
用python输出汉字字库
问题1:假设我们知道汉字编码范围是0x4E00到0x9FA5,怎么从十六进制的编码转成人类可读的字呢? 问题2:怎么把unicode编码的字写入文件呢,如果直接用open()的话,会提示UnicodeEncodeError: 'ascii' codec can't encode character u'\u4e00' in position 0: ordinal not in range(128...
分类:编程语言   时间:2014-07-20 10:46:08    阅读次数:732
如何设置python的编码格式为utf-8
重装了系统(ubuntu 14.04)原来正常可用的OpenERP项目在切换到开发者模式的时候报错:UnicodeDecodeError: 'ascii' codec can't decode byte 0x?? in position 1: ordinal not in range(128)而在服...
分类:编程语言   时间:2014-07-19 16:02:16    阅读次数:242
Cocos-2d 坐标系及其坐标转换
anchor point 究竟是怎么回事? 之所以造成不容易理解的是因为我们平时看待一个图片是 以图片的中心点 这一个维度来决定图片的位置的。而在cocos2d中决定一个 图片的位置是由两个维度 一个是 position 也就是图片的中心点 另外一个是anchor point。只要我们搞清楚他们的关...
分类:其他好文   时间:2014-07-19 00:23:08    阅读次数:250
LeetCode "Search Insert Position"
A simple 1D searching problem. Binary search of course.But.. STL has already done it for you:class Solution {public: int searchInsert(int A[], int ...
分类:其他好文   时间:2014-07-18 18:35:41    阅读次数:205
ListView的优化
1. ListView须要设置adapter,它的item是通过adapter的方法getView(int position, View convertView, ViewGroup parent)获得的。2. ListView中仅仅有第一屏的item须要新建,它的引用会被存在RecycleBin对...
分类:其他好文   时间:2014-07-18 14:09:48    阅读次数:192
css样式表中的样式覆盖顺序
刚才写zenktodo的时候,通过动态添加class的方式修改一个div的样式,总是不起作用。Css代码#navigator{height:100%;width:200;position:absolute;left:0;border:solid2#EEE;}.current_block{border...
分类:Web程序   时间:2014-07-18 12:22:24    阅读次数:248
POJ 2996 & 2993 国际象棋布局 模拟
Description Your task is to read a picture of a chessboard position and print it in the chess notation. Input The input consists of an ASCII-art picture of a chessboard with chess pieces on positio...
分类:其他好文   时间:2014-07-18 11:03:28    阅读次数:305
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!