-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
113 lines (94 loc) · 3.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE HTML>
<html lang="tr-TR">
<head>
<meta charset="UTF-8">
<!--SEO-->
<title>Hi! This Browser Title</title>
<meta name="description" content="" />
<!--CSS-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css">
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" href="assets/img/normal.png"/>
<!--JS-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/javascript.min.js"></script>
<script type="text/javascript" src="assets/js/favitab.js"></script>
<script type="text/javascript">
jQuery(function($){
$(window).favitab({
out : {
title : 'Hey!! Where Are you?',
sound : 'assets/sound/dontgo.mp3',
favicon : 'assets/img/sad.png',
callback : function(e){
console.log('Çıktı');
}
},
back : {
sound : 'assets/sound/welcome.mp3',
favicon : 'assets/img/happy.png',
callback : function(e){
console.log('Geldi');
}
}
});
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
</script>
</head>
<body>
<header>
<div class="ortala">
<h1>FAVITAB</h1>
<p>
Web sitenize gelmiş olan kullanıcı başka bir sekmeye geçiş yaptığında sizin web sitenize ait olan sekmenin değişmesini sağlar
</p>
<p>
Kullanıcı sekme değiştirince Başlık ve Favicon değiştirebilir hatta müzik çaldırabilirsiniz.
</p>
</div>
</header>
<section>
<div class="ortala">
<h2>DEMO</h2>
<p>
Demoyu görmek için bu sekmeden başka bir sekmeye çıkıp tekrar bu sekmeyi seçin
</p>
</div>
</section>
<section>
<div class="ortala">
<h2>NASIL KULLANIRIM?</h2>
<p>
Aşağıdaki parametreleri kullanarak eklentiyi yönetebilirsiniz.
</p>
<pre><code class="hljs js">
<script type="text/javascript">
jQuery(function($){
$(window).favitab({
out : { //Sekmeden çıkınca yapılacak işlemler
title : 'Nereye Gittin', //(string) Başlıkta yazacak yazı
time : null, //(null | int ) kaç sn sonra işlem yapılacak
favicon : "//app.hayatikodla.net/favitab/uzgun.png", //(string) favicon tam yolu
sound : "//app.hayatikodla.net/favitab/dontgo.mp3", //(string) mp3 tam yolu
callback : function(){} // işlem bitince fonksiyon tetiklemek için
},
back : { //Sekmeye geri gelince yapılacak işlemler
title : null, //(string) Başlıkta yazacak yazı
time : null, //(null | int ) kaç sn sonra işlem yapılacak
favicon : null, //(string) favicon tam yolu
sound : "//app.hayatikodla.net/favitab/welcome.mp3", //(string) mp3 tam yolu
callback : function(){} // işlem bitince fonksiyon tetiklemek için
}
});
});
</script>
</code></pre>
</div>
</section>
</body>
</html>