<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>炫酷的jQuery对话框插件 gDialog - 何问起</title>
<base target="_blank" />
<link href="http://hovertree.com/texiao/jquery/34/css/normalize.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://hovertree.com/texiao/jquery/34/css/animate.min.css">
<link rel="stylesheet" href="http://hovertree.com/texiao/jquery/34/css/jquery.gDialog.css">
<style>
button {
border: 0;
}

.container {
margin: 50px auto;
max-width: 728px;
text-align: center;
font-family: Arial;
}

.btn {
background-color: #ED5565;
color: #fff;
padding: 20px;
margin: 10px 30px;
border-radius: 5px;
border-bottom: 3px solid #DA4453;
}

a {
color: darkslateblue;
}
</style>

</head>

<body>
<div style="width:310px;margin:0px auto;">
<a href="http://hovertree.com/">首页</a>
<a href="http://hovertree.com/texiao/">特效</a>
<a href="http://hovertree.com/h/bjaf/4132lshc.htm">原文</a>
</div>
<div class="container">
<h1>jQuery gDialog Plugin Exampels</h1>
<button class="btn demo-1">Alert对话框</button>
<button class="btn demo-2">Prompt对话框</button>
<button class="btn demo-3">Prompt对话框</button>
</div>
<script src="http://hovertree.com/ziyuan/jquery/jquery-2.2.1.min.js"></script>
<script src="http://hovertree.com/texiao/jquery/34/js/jquery.gDialog.js"></script>
<script>
$('.demo-1').click(function () {
$.gDialog.alert("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse libero erat, scelerisque sit amet dolor nec, euismod feugiat massa.", {
title: "Alert对话框 by 何问起",
animateIn: "bounceIn",
animateOut: "bounceOut"
});
});
$('.demo-2').click(function () {
$.gDialog.prompt("Your website", "hovertree.com", {
title: "Prompt对话框 by 何问起",
required: true,
animateIn: "rollIn",
animateOut: "rollOut"
});
});
$('.demo-3').click(function () {
$.gDialog.confirm("Are You Sure?", {
title: "Confirm对话框 by 何问起",
animateIn: "bounceInDown",
animateOut: "bounceOutUp"
});
});
</script>
</body>
</html>

posted on 2016-03-10 16:18  初来乍到,多多指导  阅读(79)  评论(0)    收藏  举报