Uncaught TypeError: Cannot read property 'trigger' of undefined
大图显示不正常,也无法左右滑动
大图显示不正常,也无法左右滑动
2017-02-23
swipeRight(function(){
var index= parseInt( imgLarge.index);
if(index==1){
index=17;
}else{
index--;
}
showLargeImage(index,function(){
$('#imgLarge').addClass('animated bounceInLeft');
});
});
var index= parseInt( imgLarge.index);
if(index==1){
index=17;
}else{
index--;
}
showLargeImage(index,function(){
$('#imgLarge').addClass('animated bounceInLeft');
});
});
2017-02-18
imgLarge.addEventListener('webkitAnimationEnd',function(){
$('#imgLarge').attr('class','');
});
$('#imgLarge').attr('class','');
});
2017-02-18
$('#imgLarge').attr('style',
this.height/this.width>1.2?'height:100%':'width:100%');
this.height/this.width>1.2?'height:100%':'width:100%');
2017-02-18
#large_container{
display:-webkit-box;
-webkit-box-align:center;
-webkit-box-pack:center;}//这样不要计算大图了,会自动居中,根据情况设置 imageLarge或者width:100% or height:100%
display:-webkit-box;
-webkit-box-align:center;
-webkit-box-pack:center;}//这样不要计算大图了,会自动居中,根据情况设置 imageLarge或者width:100% or height:100%
2017-02-18
$('#container li').height( $('#container li:first-child').width()).addClass("animated bounceIn");
2017-02-18
$('#container').html(tmp);
$('#container li').height( $('#container li:first-child').width() );
$('#container li').height( $('#container li:first-child').width() );
2017-02-18
我的是这样的:
li{height:100px;width:25%;float:left;box-sizing:border-box;border:2px solid ;background:white;}
li img{
width:100%;
height:100%;
}
不需要js去计算了。
li{height:100px;width:25%;float:left;box-sizing:border-box;border:2px solid ;background:white;}
li img{
width:100%;
height:100%;
}
不需要js去计算了。
2017-02-18
domImage.removeEventListener('webkitAnimationEnd',false);
2017-02-17