-
123查看全部
-
说话可以在快点嘛查看全部
-
$('#large-container').tap(function(){ $(this).hide(); }).swipeLeft(function(){ cid++; lock = true; if (cid>total) { cid=total; }else{ loadImg(cid,function(){ domImage.addEventListener('webkitAnimationEnd',function(){ wImage.removeClass('animated bounceInRight'); domImage.removeEventListener('webkitAnimationEnd',false); },false); wImage.addClass('animated bounceInRight'); }); } }).swipeRight(function(){ cid--; if (cid<1) { cid=1; }else{ loadImg(cid,function(){ domImage.addEventListener('webkitAnimationEnd',function(){ wImage.removeClass('animated bounceInLeft'); domImage.removeEventListener('webkitAnimationEnd',false); },false); wImage.addClass('animated bounceInLeft'); }); } });查看全部
-
jQuery包装集和DOM对象 http://www.cnblogs.com/Johnny_Z/archive/2012/06/17/2552577.html查看全部
-
img obj当设置src属性的时候,才会去请求这个图片资源,在请求资源的过程中出发img obj的onload事件,你onload写在哪儿都行,只有你设置src的时候,才会去请求出发onload函数查看全部
-
相关知识学习 本地存储 anglar js css3动画 viowport查看全部
-
老师这里说的background-position是负值,把我搞蒙了。background-position如果将图片定位向右和向下移动,都是正值。canvas如果将图片向右和向下移动,也是正值。为什么说是负值呢?查看全部
-
<meta name="viewport" content="width=device-width,initial-scale=1.0"><br> 因为不同的物理设备分辨率不一致,为了保持网页在不同设备上显示得一致,将宽度设置为物理设备的宽度,并且不要缩放。 在课程中,如果不写这段代码,会导致页面布局4列的时候出现布局混乱。查看全部
-
var img = $("img")[0]; // Get my img elem var pic_real_width, pic_real_height; $("<img/>") // Make in memory copy of image to avoid css issues .attr("src", $(img).attr("src")) .load(function() { pic_real_width = this.width; // Note: $(this).width() will not pic_real_height = this.height; // work for in memory images. });查看全部
-
老师是怎么计算的图片真实宽高?原理是什么?查看全部
-
事件代理 dalegete查看全部
-
Image 对象的两个作用;可以预加载图片,可以动态计算图片嗯宽高查看全部
-
Image 的onload 事件 可以取到图片的宽高,然后动态让图片适应屏幕。这个功能非常棒。查看全部
-
tips查看全部
-
animate.css 动画效果框架查看全部
举报
0/150
提交
取消