js

http://swipejs.com/

http://www.codesky.net/article/200508/javascript/picture10.htm

 

https://github.com/bradbirdsall/Swipe

 

http://www.tutorialspoint.com/javascript/javascript_animation.htm

 

http://leaflet.cloudmade.com/download.html

 

https://github.com/ded/morpheus

 

    http://www.tutorialspoint.com/cgi-bin/practice.cgi?file=javascript_44

<html>
<head>
<title>JavaScript Animation</title>
<script type="text/javascript">
<!--
var imgObj = null;
function init(){
imgObj = document.getElementById('myImage');
imgObj.style.position= 'relative';
imgObj.style.left = '0px';
}
function moveRight(){
imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px';
}
window.onload =init;
//-->
</script>
</head>
<body>
<form>
<img id="myImage" src="http://images.cnblogs.com/html.gif" />
<p>Click button below to move the image to right</p>
<input type="button" value="Click Me" onclick="moveRight();" />
</form>
</body>
</html>

 

 

 

dust me 

http://julabs.me/blog/dust-me-selectors/

 

http://www.sitepoint.com/dustmeselectors/?1347525499

 

http://releases.mozilla.org/pub/mozilla.org/addons/5392/dust_me_selectors-3.01-fx.xpi

 

js  无缝平滑滚动

http://www.cnblogs.com/blueSkys/archive/2010/03/15/1686476.html

 

 

getby classname

http://www.nowamagic.net/javascript/js_GetElementsByClassName.php

posted @ 2012-09-12 10:14  rayray2  阅读(207)  评论(0编辑  收藏  举报