自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

转载 css just for webkit browser

@media screen and (-webkit-min-device-pixel-ratio:0) { .treeview { .treeview-icon { bottom: @scrollbarHeight !important; } }}

2013-12-19 11:44:32 645

转载 js remove from array

First, find the index of the element you want to remove:var array = [2, 5, 9];var index = array.indexOf(5);Then remove it with splice:if (index > -1) { array.splice(index, 1);}The

2013-12-13 16:06:26 1973

转载 js clone

// Shallow copyvar newObject = jQuery.extend({}, oldObject);// Deep copyvar newObject = jQuery.extend(true, {}, oldObject);

2013-12-12 13:26:20 507

转载 ngclass in angular

http://stackoverflow.com/questions/7792652/what-is-the-best-way-to-conditionally-apply-a-class-with-angularjsng-class="{selected: $index==selectedIndex}"ng-class="($index==selectedIndex) ? '

2013-12-12 13:25:39 3551

原创 angular directive ngmodel with jquery ui datepicker

app.directive('datepicker',function(){return{restrict:'A',require:'ngModel',link:function(scope, element, attrs, ngModelCtrl){$(function(){element.datepicker({dateFormat:'dd/mm

2013-12-10 14:35:33 1913

原创 css user-select and box-sizing

user-select 控制用户选择方式box-sizing 是否把边框算到整体宽度内

2013-12-10 09:59:11 806

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除