css背景缩写属性可以在一个声明中设置所有的背景属性,css背景图像支持引入多个图像. 主要属性有:background-color,background-image,background-repeat,background-position,background-attachment,backgr ...
分类:
其他好文 时间:
2020-10-29 09:38:40
阅读次数:
14
ng-repeat指令可以完美的显示表格。使用orderBy过滤器排序显示,可以使用orderBy过滤器:AngularJS实例<table><trng-repeat="xinnames|orderBy:‘Country‘"><td>{{x.Name}}</td><td>{{x.Country}}www
分类:
Web程序 时间:
2020-10-22 23:03:41
阅读次数:
37
width:200px; height:150px; background: radial-gradient(circle at bottom right, transparent 15px, aqua 0) bottom right, radial-gradient(circle at botto ...
分类:
其他好文 时间:
2020-10-19 23:08:52
阅读次数:
39
int hammingWeight(uint32_t n) { int count=0; while(n) { if(n & 1) count++; n >>= 1; } return count; } ...
分类:
其他好文 时间:
2020-09-18 01:58:22
阅读次数:
26
多位微软MVP推荐,第一本ASP.NET Core 3.1的书来了 我脱产花费了接近一年时间创作书籍《深入浅出ASP.NET Core》,终于上架了。 目前天猫、京东等主流平台均有销售。 这本书是基于.NET Core3.1平台,从ASP.NET Core的基础入门,通过项目实战结合ASP.NET ...
分类:
Web程序 时间:
2020-09-18 01:54:29
阅读次数:
49
.box{ width:100%; background: url(../img/bg.png) no-repeat; background-size: 100% 100%; position: absolute; z-index: -1; top: 0; left: 0; right: 0; } ...
分类:
其他好文 时间:
2020-09-18 01:18:19
阅读次数:
31
int numIdenticalPairs(int* nums, int numsSize){ int hash[101] = {0}; int ret = 0; for(int i = 0; i < numsSize; i++) { hash[nums[i]]++; ret += hash[num ...
分类:
其他好文 时间:
2020-09-18 00:54:43
阅读次数:
30
日历控件是基于 Qt5.x 以上,导入 QtQuick.Controls.1.2 即可使用。在看我这篇博客之前,最好选择 Calendar 按 F1 查看 Qt Creator 的帮助文档,或者查看 Calendar 的官方文档所在网页,因为我这篇博客也基本上参考的官方文档,只是在其基础上写了个 D ...
分类:
其他好文 时间:
2020-09-17 18:20:52
阅读次数:
54
int romanToInt(char * s){ int* hash = (int*)calloc(26,sizeof(int)); hash['I'-65] = 1; hash['V'-65] = 5; hash['X'-65] = 10; hash['L'-65] = 50; hash['C' ...
分类:
其他好文 时间:
2020-09-17 17:09:44
阅读次数:
20
int* sortArrayByParityII(int* A, int ASize, int* returnSize){ int* arr = (int*)calloc(ASize,sizeof(int)); int evenindex = 0; int oddindex = 1; for (in ...
分类:
编程语言 时间:
2020-09-17 15:33:05
阅读次数:
32