基本信息
源码名称:新手引导提示,可做网站操作指南(Intro.js)示例源码
源码大小:0.03M
文件格式:.zip
开发语言:js
更新时间:2019-05-07
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>Intro.js演示_做好网站</title>
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="css/introjs.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/introjs-ie.css?v=030">
<!-- <![endif]-->
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right" data-step="6" data-intro="下载并使用它吧!">
<li><a href="https://github.com/usablica/intro.js/tags" ><i class='icon-black icon-download-alt'></i> 下载</a></li>
<li><a href="https://github.com/usablica/intro.js" >Github</a></li>
</ul>
<h3 class="muted">Intro.js</h3>
</div>
<div class="jumbotron">
<h1 data-step="1" data-intro="Hello! :) 这个项目叫做 Intro.js.">Intro<span style="font-weight: normal;">.js</span></h1>
<p class="lead" data-step="5" data-intro="试试吧,它是免费的、开源的。">为您的网站和项目提供一步一步的、更好的介绍</p>
<a class="btn btn-large btn-success" href="javascript:void(0);">点击我</a> </div>
<hr>
<div class="row-fluid marketing">
<div class="span6" data-step="2" data-intro="是不是很有趣呢?" data-position="right">
<h4>使用简单</h4>
<p>引入 js 和 css,然后在代码中加入步骤和介绍。</p>
<h4>快速小巧</h4>
<p><strong>7 KB</strong> 的 JavaScript 和 <strong>3 KB</strong> CSS,就是全部。</p>
<h4>免费开源</h4>
<p>免费和开源(包括商业用途),MIT许可证下。</p>
</div>
<div class="span6" data-step="3" data-intro="更多的功能,更多的乐趣。" data-position="left">
<h4>键盘加鼠标导航</h4>
<p>鼠标或键盘 <code>←</code>, <code>→</code>, <code>ENTER</code> 导航,<code>ESC</code> 键退出。</p>
</div>
</div>
<div class="footer">
<p>© <a href="http://shouce.ren" title="手册网">shouce.ren</a></p>
</div>
</div>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/intro.js"></script>
<script>
$(function() {
var $btn = $('.btn');
$btn.on('click', function() {
introJs().setOptions({
nextLabel: '下一步 →',
prevLabel: '← 上一步',
skipLabel: '退出'
}).start();
});
});
</script>
</body>
</html>