Skip to content

JSLite/JSLite-touch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

JSLite-touch

Tap的使用方法

$("#ontouch").on("tap",function(){
	alert("我是 .on(tap) 方式");
	$(this).css({width:"200px",height:"100px",border:"1px red solid"});
})
$("#mytap").tap(function(){
	alert("我是 .tap() 方式");
	$(this).css({width:"300px",height:"30px",border:"1px blue solid"});
})

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 79.3%
  • HTML 20.7%