-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
31 lines (27 loc) · 1.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
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.min.css">
</head>
<body>
<div id="container"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/ayat.min.js"></script>
<script>
$("#container").Ayat({
theme: 'Allah', // theme name e.g. salat, zakat, sawm, issa
lang: 'ar', // default language ar, can choose en,fr,es...
reciter: 'shuraym', // optional, reciter sudais, shuraim, alafasy...
width: "500", // optional, container width
// height: "auto", // optional, container height
// fontSize: "23", // optional, default: 23px
// skin: "dark", // optional, default: light. available also dark
// delay: '5', // optional, change every x sec otherwise will be fix and user has to refresh page to get another
details: 1, // link to original aya on quran.com
mailto: 1, // mailto aya to a friend
facebook: 1, // share verse on facebook
twitter: 1 // share verse on twitter
});
</script>
</body>
</html>