js 的 一些操作。。。
2021-07-16 05:15
标签:cti load this tin 图片 span div 操作 blog 使用 parsetInt 或者 parseFloat 来将 字符串 转为数字。。。。。。。 js 的 一些操作。。。 标签:cti load this tin 图片 span div 操作 blog 原文地址:http://www.cnblogs.com/whm-blog/p/7070889.html// 对错误图片进行处理
$("img").error(function() {
$(this).attr("src", "http://127.0.0.1:81/img/error.jpg")
})
//处理图片高度。。。。。
$(".scrollable-img img").load(function(){
var height = parseFloat($(this).css("height"))
if(height){
$(this).css("padding-top",(204-height)/2+"px")
}
})
$(".portfolio-img img").load(function(){
var height = parseFloat($(this).css("height"))
if(height){
$(this).css("padding-top",(157-height)/2+"px")
}
})