jQuery流程步骤进度条网页特效

jQuery流程步骤进度条网页特效-精品资源网
jQuery流程步骤进度条网页特效
此内容为免费资源,请登录后查看
0
免费资源

jQuery流程步骤进度条网页特效

jQuery流程步骤进度条网页特效是一款可以上一步可以下一步,也可以支持跳到第二步第三步的步骤进度条样式代码。

js代码

<script src=\"js/jquery.step.min.js\"></script>
<script type=\"text/javascript\">
	var $step = $(\"#step\");
	var $index = $(\"#index\");

	$step.step({
		index: 0,
		time: 500,
		title: [\"填写申请表\", \"上传资料\", \"待确认\", \"已确认\", \"预约完成\"]
	});

	$index.text($step.getIndex());

	$(\"#prevBtn\").on(\"click\", function() {
		$step.prevStep();
		$index.text($step.getIndex());
	});

	$(\"#nextBtn\").on(\"click\", function() {
		$step.nextStep();
		$index.text($step.getIndex());
	});

	$(\"#btn1\").on(\"click\", function() {
		$step.toStep(1);
		$index.text($step.getIndex());
	});

	$(\"#btn2\").on(\"click\", function() {
		$step.toStep(2);
		$index.text($step.getIndex());
	});
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容