Video标签的使用Video标签含有src、poster、preload、autoplay、loop、controls、width、height等几个属性, 以及一个内部使用的标签。Video标签内除了可以包含标签外,还可以包含当指定的视频都不能 播放时,返回的内容。(1) src属性和poste...
分类:
Web程序 时间:
2015-03-10 16:42:03
阅读次数:
141
Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth...
分类:
其他好文 时间:
2015-03-10 15:16:50
阅读次数:
146
html 代码: * css 代码:body{ font:14px; font-family:Arial, Helvetica, sans-serif;}.divWrapper{ width:390px; height:39px; margin:0 auto; margin-top:20px...
分类:
其他好文 时间:
2015-03-10 13:31:21
阅读次数:
114
.box{border:1px solid red;width:600px;height: 300px;margin:30px auto;position: relative;}
.box div{position: absolute;top:0;width:10px;height:10px;background:blueviolet;}
.l1{left:20...
分类:
其他好文 时间:
2015-03-10 10:33:23
阅读次数:
114
首页 效果为:middle-mid部分css样式少写了width,自己添加即可。css代码为:.top{ color:red; width:auto; height:10%; border-width:1; border-style:dotted;}.m...
分类:
Web程序 时间:
2015-03-10 00:06:49
阅读次数:
140
直接在你的layout文件的开头加一个FrameLayout ,里面放一个ImageView,因为只有android:src可以设置android:scaleType,android:background是无法设置的,我的代码:
android:layout_width="fill_parent"
android:layout_height="fill_parent">...
分类:
移动开发 时间:
2015-03-09 22:31:10
阅读次数:
343
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.知识点:二叉搜素树: 1. 如果root有左子节点,则所有左边的节点root; 3. root.lef.....
分类:
其他好文 时间:
2015-03-09 20:48:13
阅读次数:
182
11/23/2014:Updated to be compatible with iOS 7, iOS 8, and Xcode 6.1.If you wanted to create a customized table view complete with dynamic table view ...
分类:
其他好文 时间:
2015-03-09 18:52:40
阅读次数:
183
利用position:fixed属性新建一个全屏的层,将背景图片置于这个层中,这样就不会随着鼠标滚轮的滚动而改变背景图片的大小。
主要css:
.image_bg{position:fixed;left:0;top:0;width:100%;height:100%;z-index:-1}
.image_bg img{position:absolute;left:0;top:0;margin:0 auto;
width:100%;height:100%;z-index:-1}...
分类:
其他好文 时间:
2015-03-09 16:23:00
阅读次数:
174
A graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find the...
分类:
其他好文 时间:
2015-03-09 16:08:15
阅读次数:
207