-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
56 lines (51 loc) · 2.15 KB
/
script.js
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
// $(document).ready(function () {
// function isScrolledIntoView(elem) {
// var docViewTop = $(window).scrollTop();
// var docViewBottom = docViewTop + $(window).height();
// var elemTop = $(elem).offset().top;
// var elemBottom = elemTop + $(elem).height();
// return elemBottom <= docViewBottom && elemTop >= docViewTop;
// }
// $(".cardd").each(function () {
// if (isScrolledIntoView(this) === true) {
// if (!$(this).hasClass("animate__animated animate__fadeInUp")) {
// $(this).removeClass("hidden")
// $(this).addClass("animate__animated animate__fadeInUp");
// }
// }
// });
// $(".testimonials .card").each(function () {
// if (isScrolledIntoView(this) === true) {
// if (!$(this).hasClass("animate__animated animate__fadeInUp")) {
// $(this).removeClass("hidden")
// $(this).addClass("animate__animated animate__fadeInUp");
// }
// }
// });
// // If element is scrolled into view, fade it in
// $(window).scroll(function () {
// $(".cardd").each(function () {
// if (isScrolledIntoView(this) === true) {
// if (!$(this).hasClass("animate__animated animate__fadeInUp")) {
// $(this).removeClass("hidden")
// $(this).addClass("animate__animated animate__fadeInUp");
// }
// }
// });
// $(".testimonials .card").each(function () {
// if (isScrolledIntoView(this) === true) {
// if (!$(this).hasClass("animate__animated animate__fadeInUp")) {
// $(this).removeClass("hidden")
// $(this).addClass("animate__animated animate__fadeInUp");
// }
// }
// });
// });
// });
// async function isPrivate(){
// const isPrivateModeOn = await isPrivateMode()
// if(isPrivateModeOn){
// $("#sp_img").attr("src", "/images/xurumin_and_garfield_private.png")
// }
// }
// isPrivate()