#userinfo { overflow-y: scroll; position: absolute; top: 15px; bottom: 15px; width: 90%; min-height: 300px; } ...
分类:
Web程序 时间:
2017-03-08 17:36:49
阅读次数:
151
Mapper: Reduce: Job: 此代码运行不成功:不是我想要的:接下来作修改: ...
分类:
其他好文 时间:
2017-03-08 11:14:44
阅读次数:
178
上面是生成二维码到F盘,先导入两个JAR包(zxing code 3.2.1 , zxing javase 3.2.1),下面是解析二维码: 还有另一种方式,使用Jquery.qrcode的方式生成 解析就不写示例了,发个网址: ...
分类:
其他好文 时间:
2017-03-08 10:56:37
阅读次数:
744
1.Swiper3.x的全部配置选项、方法、函数(http://www.swiper.com.cn/api/basic/2014/1215/19.html) 2.引入 1 //如果你的页面加载了jQuery.js或者zepto.js,你可以选择使用更轻便的swiper.jquery.min.js。 ...
分类:
其他好文 时间:
2017-03-08 10:52:47
阅读次数:
1102
Description Give a tree with n vertices,each edge has a length(positive integer less than 1001). Define dist(u,v)=The min distance between node u and ...
分类:
其他好文 时间:
2017-03-08 01:02:26
阅读次数:
232
1.Vf=Rf*If=120V 2.利用wm=(U-IaRa')/Iaf*if*ia 以及平衡方程得到的 Tm=Ia*If*Ia 得到n=1870.1 r/min 3.绘制的图象如下图所示,为电机特性曲线 4.模拟电路及其图象如下图所示: 由图中可以看出,转速无论变化趋势和大致稳态值,均与理论值相符 ...
分类:
其他好文 时间:
2017-03-07 22:31:13
阅读次数:
186
1.win+R,运行npm install postcss-cli -g 2.安装autoprefixer npm install autoprefixer -g 3.安装 npm install postcss-cli -g 4.打开webstorm——settings——找到External T ...
分类:
Web程序 时间:
2017-03-07 20:35:46
阅读次数:
352
This is a new year. A new beginning. And things will change. 新一年,新开始,新气象。 Hey Hey Hey. I can see my time is coming. I must be well-prepared for it. Th ...
分类:
其他好文 时间:
2017-03-07 20:29:49
阅读次数:
144
很明显的区间DP,设dp[l][r]表示[l,r]区间的字符串折叠后的最小长度。 可以通过两种方向转移,dp[l][r]=min(dp[l][i]+dp[i+1][r]). 另一种是折叠,dp[l][r]=min(dp[l][l+k-1]+cal((r-l+1)/k)+2).其中k是能整除(r-l+ ...
分类:
其他好文 时间:
2017-03-07 19:22:02
阅读次数:
167
//生成[min,max)的值 parseInt var RandomNum = parseInt(Math.random() * (21 - 15) + 15); // 生成[min,max]的值 Math.round 四舍五入 var RandomNum = Math.round(Math.ra... ...
分类:
Web程序 时间:
2017-03-07 19:02:51
阅读次数:
163