码迷,mamicode.com
首页 >  
搜索关键字:bottom bar    ( 10976个结果
解决 IE6 position:fixed 固定定位问题
实现固定在窗口左下角一般的 position:fixed; 实现方法#ad{ position:fixed; bottom:0; left:0px;}在 IE6 中实现 position:fixed; 的办法#ad{ position:fixed; bottom:0; ...
分类:其他好文   时间:2014-06-07 05:20:40    阅读次数:226
编程中Foo, Bar 到底什么意思?
1 前言 在很多国外计算机书本和一些第三份开源软件的Demo中经常用到两个英文单词Foo,Bar。这到底是什么意思呢?从步入屌丝界的IT生活简单这两个单词到现在我还是不知道这两个单词的真正含义,今天有必要查查总结下。 2 维基百科上的解释 原文: The terms foobar, foo, bar...
分类:其他好文   时间:2014-05-30 07:56:14    阅读次数:579
谷歌下设置滚动条的css样式
.oLi-lists-scroll::-webkit-scrollbar { width:5px; padding:1px; background:url(../images/repeat-bar.png) repeat-y;}/* Track */.oLi-lists-scroll::-webki...
分类:Web程序   时间:2014-05-29 19:02:39    阅读次数:386
position进阶详解
我们先来看看CSS3 Api中对position属性的相关定义:static:无特殊定位,对象遵循正常文档流。top,right,bottom,left等属性不会被应用。relative:对象遵循正常文档流,但将依据top,right,bottom,left等属性在正常文档流中偏移位置。而其层叠通过...
分类:其他好文   时间:2014-05-29 14:19:01    阅读次数:290
IOS 6和 IOS7适配的一些问题
由于在做一个ios的通用设计平台,那么客户端解析的时候就涉及到一些ios不同版本,不同分辨率的适配问题首先碰到的就是navigation bar中的item的背景色的问题在ios7中设置settintcolor背景是透明的,图标和字默认是白色的,效果不错,但是在ios 6是,背景色也被设置成了白色,...
分类:移动开发   时间:2014-05-29 09:49:39    阅读次数:278
android设置边框的问题
问题:用以下代码为button绘制边框时,如button的height为1会导致button不显示(既没有边框,也没有button本身)。GradientDrawable gradient = new GradientDrawable(Orientation.BOTTOM_TOP, new int[...
分类:移动开发   时间:2014-05-28 22:42:27    阅读次数:508
[leetcode]Minimum Path Sum @ Python
原题地址:https://oj.leetcode.com/problems/minimum-path-sum/题意:Given amxngrid filled with non-negative numbers, find a path from top left to bottom right w...
分类:编程语言   时间:2014-05-28 03:03:13    阅读次数:320
View的getLeft, getRight, getTop, getBottom
View的getLeft, getRight, getTop, getBottom方法得到的分别是相对于其父组件不同方向的距离网上找了张图说明:其中right和left的计算方法如下: right = left + width; bottom = top + height;
分类:其他好文   时间:2014-05-25 18:51:01    阅读次数:244
css中background背景属性概述
background:url(背景图片路径) no-repeat;/*不重复默认在左上方*/background:url(背景图片路径) no-repeat center;/*不重复背景图片中间显示*/background:url(背景图片路径) no-repeat bottom center...
分类:Web程序   时间:2014-05-25 14:59:25    阅读次数:276
Accelerated C++学习笔记7—<使用顺序容器并分析字符串>
第6章  使用库算法 本章中主要教我们如何使用几个库算法来解决与处理字符串和学生成绩相关的问题。 1、分析字符串 使用一个循环来连接两幅字符图案 for(vector::const_iterator it = bottom.begin(); it != bottom.end(); ++it) ret.push_back(*it); 等价于 ret.insert(ret.end(...
分类:编程语言   时间:2014-05-24 20:24:10    阅读次数:365
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!