可以用简写形式:element.css({
'transition':'5000ms,linear',
'transform': 'translate3d(-' + (width * 2) + 'px,0px,0px)'
});
'transition':'5000ms,linear',
'transform': 'translate3d(-' + (width * 2) + 'px,0px,0px)'
});
2016-09-28
swipe.scrollTo = function(x, speed) {
element.css({
'transition-timing-function' : 'linear',
'transition-duration': speed + 'ms',
'transform' : 'translate3d(-' + x + 'px,0px,0px)' })
return this; }
return swipe;}
最后这个return swipe,dreamweaver提示有错误
element.css({
'transition-timing-function' : 'linear',
'transition-duration': speed + 'ms',
'transform' : 'translate3d(-' + x + 'px,0px,0px)' })
return this; }
return swipe;}
最后这个return swipe,dreamweaver提示有错误
2016-09-28
那个js文件其实就是jquery吧,复制浏览器打开就能下载了。。。jQuery JavaScript Library v2.1.4。不明白为什么第一个那么多赞,老师已经告诉你学习课程之前要了解jquery了。
2016-09-22