jQuery.Cycle.Lite
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery.Cycle.Lite相关的知识,希望对你有一定的参考价值。
Just the bare essentials needed to produce a jQuery.Cycle.Lite powered image sequence...make sure you adjust paths according to your needs!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>cycleTest</title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.lite.1.0.min.js"></script> <script type="text/javascript" charset="utf-8"> $(function(){ $("#cycleTest").cycle(); }); </script> </head> <body> <div id="cycleTest"> <img src="http://bit.ly/3cHTyG" width="200" height="200" /> <img src="http://bit.ly/2Paz0b" width="200" height="200" /> <img src="http://bit.ly/1mpPuL" width="200" height="200" /> <img src="http://bit.ly/16gVyD" width="200" height="200" /> </div> </body>
以上是关于jQuery.Cycle.Lite的主要内容,如果未能解决你的问题,请参考以下文章