- jQuery 教程
- jQuery - 主页
- jQuery - 概述
- jQuery - 基础知识
- jQuery - 语法
- jQuery - 选择器
- jQuery - 事件
- jQuery - 属性
- jQuery-AJAX
- jQuery DOM 操作
- jQuery-DOM
- jQuery - 添加元素
- jQuery - 删除元素
- jQuery - 替换元素
- jQuery CSS 操作
- jQuery - CSS 类
- jQuery - 尺寸
- jQuery - CSS 属性
- jQuery 效果
- jQuery - 效果
- jQuery - 动画
- jQuery - 链接
- jQuery - 回调函数
- jQuery 遍历
- jQuery - 遍历
- jQuery - 遍历祖先
- jQuery - 遍历后代
- jQuery用户界面
- jQuery - 交互
- jQuery - 小部件
- jQuery - 主题
- jQuery 参考
- jQuery - 实用程序
- jQuery 插件
- jQuery - 插件
- jQuery - PagePiling.js
- jQuery-Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用资源
- jQuery - 问题与解答
- jQuery - 快速指南
- jQuery - 有用的资源
- jQuery - 讨论
jQuery - Producttour.js
Producttour.js 是一个 jQuery 插件,用于快速轻松地在您的网站中实施帮助指南。
一个简单的 Producttour.js 示例如下所示 -
<!doctype html> <html lang = "en" class = "no-js"> <head> <meta charset = "UTF-8"> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "css/reset.css"> <link rel = "stylesheet" href = "css/style.css"> <script src = "js/modernizr.js"></script> </head> <body background = "tp.png"> <div class = "cd-nugget-info"> <button id = "cd-tour-trigger" class = "cd-btn">Start tour</button> </div> <ul class = "cd-tour-wrapper"> <li class = "cd-single-step"> <span>Step 1</span> <div class = "cd-more-info bottom"> <h2>Step Number 1</h2> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Modi alias animi molestias in, aperiam.</p> <img src = "img/step-1.png" alt = "step 1"> </div> </li> <li class = "cd-single-step"> <span>Step 2</span> <div class = "cd-more-info top"> <h2>Step Number 2</h2> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia quasi in quisquam.</p> <img src = "img/step-2.png" alt = "step 2"> </div> </li> <li class = "cd-single-step"> <span>Step 3</span> <div class = "cd-more-info right"> <h2>Step Number 3</h2> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio illo non enim ut necessitatibus perspiciatis, dignissimos.</p> <img src = "img/step-3.png" alt = "step 3"> </div> </li> </ul> <script src = "js/jquery-2.1.4.js"></script> <script src = "js/jquery.mobile.min.js"></script> <script src = "js/main.js"></script> </body> </html>
这应该产生以下结果 -
点击这里