我觉得这段代码还需要改进,我做响应式网站的时候,这段代码就有错误了,在判断if( index < num )的时候如果true就清除style,false的话就添加style这样才对
2018-06-04
function getByClass(clsName, parent){
//定义函数getByClass()实现获取document或指定父元素下所有class为on的元素
var oParent=parent?document.getElementById(parent):document
var boxArr=oParent.querySelectorAll(clsName);
console.log(boxArr)
return boxArr;
}
//定义函数getByClass()实现获取document或指定父元素下所有class为on的元素
var oParent=parent?document.getElementById(parent):document
var boxArr=oParent.querySelectorAll(clsName);
console.log(boxArr)
return boxArr;
}
var itemH = Math.floor(box.eq(index).outerHeight(true));
关于图片叠加BUG,看看这个boxArr[minHIndex] += itemH;是否能解决
关于图片叠加BUG,看看这个boxArr[minHIndex] += itemH;是否能解决
2018-05-15