Foundation Joyride教程
1、Joyride 是一个功能向导的 JavaScript 效果,创建实例如下:实例<!-- Elements that control the tour stops --><h3id="first">First stop!</h3><h3id="second">Second stop!</h3><!-- The joyride: must be placed at the bottom of your page, but inside <body> --><olclass="joyride-list"data-joyride><lidata-id="first"><p>First stop. The ride has begun!</p></li><lidata-id="second"><h4>Second Stop</h4><p>Any valid HTML will work inside the Joyride.</p></li><lidata-button="End"><h4>End Stop</h4><p>The tour is over. You can either go back to the previous stop or close it.</p></li></ol><!-- Start Joyride Upon Initialization --><script>$(document).ready(function() { $(document).foundation('joyride', 'start');})</script>
