- 浏览: 45243 次
- 性别:
- 来自: 北京
最新评论
-
漫步蜗牛:
console终端乱码 在/etc/profile文件的 ...
linux终端 字符界面 显示乱码
文章列表
function scaleImage(ImgD, FitWidth, FitHeight){
var width = ImgD.width, height = ImgD.height;
var w = width / FitWidth, h = height / FitHeight;
if (w >= h) { //宽度固定,高度缩放
ImgD.width = FitWidth;
ImgD.height= height / w;
jQuery(ImgD).css("margin-top&qu ...