-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (36 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Jquery Modal</title>
<link href='https://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="modal.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="modal.js"></script>
<script>
$(function() {
$('.msg').click(function() {
$.modal('Hello! you are seeing a modal box with a message in it');
});
$('.form').click(function () {
var form = '<form>'+
'<input type="text" name="username" placeholder="username" /><br>'+
'<input type="text" name="password" placeholder="password" /><br>'+
'<div class="btn submitBtn">Submit</div>'+
'</form>';
$.modal(form);
});
$('.vid').click(function () {
$.modal('<iframe width="560" height="315" src="https://www.youtube.com/embed/GL0rbxB9Lqg" frameborder="0" allowfullscreen></iframe>');
});
});
</script>
</head>
<body>
<a href="#" class="msg">show message</a><br>
<a href="#" class="form">show form</a><br>
<a href="#" class="vid">show video</a><br>
<br>
</body>
</html>