-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiframecontact.html
89 lines (88 loc) · 3.37 KB
/
iframecontact.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.pescadogames.com/assets/styles/style.css">
<link href="https://fonts.googleapis.com/css?family=Alex+Brush%7CNoto+Serif+JP&display=swap" rel="stylesheet">
</head>
<body>
<div class="center">
<section class="wrapper">
<div class="container">
<div class="content">
<div class="content-item">
<img src="https://www.pescadogames.com/assets/image/2021%20Twitter%20logo%20-%20blue.png" class="image" width="60%" height="60%">
</div>
<div class="content-item">
<div class="text">
<section class="fadein">
<h2>Twitterでのお問い合わせ</h2>
<p>ご注意:Twitterでのお問い合わせは<br>DMでのみ受け付けております<br>リプライでのお問い合わせはお答えできかねます</p>
<a class="heading2" href="https://twitter.com/messages/compose?recipient_id=1383810219252150278" target="_blank" rel="noopener">Twitterでのお問い合わせはこちら<br>(ログイン済みの場合はDMに直接飛びます)</a>
</section>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="center">
<section class="wrapper">
<div class="container">
<div class="content">
<div class="content-item">
<img src="https://www.pescadogames.com/assets/image/icon_clyde_blurple_RGB.png" class="image" width="60%" height="60%">
</div>
<div class="content-item">
<div class="text">
<section class="fadein">
<h2>Discordでのお問い合わせ</h2>
<p>ご注意:Discordでのお問い合わせは<br>サーバーでのみ受け付けております</p>
<a class="heading2" href="https://discord.gg/MaGjYrbtd2" target="_blank" rel="noopener">Discordでのお問い合わせはこちら</a>
</section>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="center">
<section class="wrapper">
<div class="container">
<div class="content">
<div class="content-item">
<img src="https://www.pescadogames.com/assets/image/Mail.png" class="image" width="60%" height="60%">
</div>
<div class="content-item">
<div class="text">
<section class="fadein">
<h2>メールでのお問い合わせ</h2>
<p>ご注意:メールでのお問い合わせは、<br>返信に時間がかかる場合があります!<br>予めご了承の上ご利用ください</p>
<a class="heading2" href="mailto:pescadogamesofficial@gmail.com" target="_blank" rel="noopener">メールでのお問い合わせはこちら</a>
</section>
</div>
</div>
</div>
</div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script>
$(function(){
$(window).scroll(function (){
$('.fadein').each(function(){
var elemPos = $(this).offset().top;
var scroll = $(window).scrollTop();
var windowHeight = $(window).height();
if (scroll > elemPos - windowHeight + 200){
$(this).addClass('scrollin');
}
});
});
});
</script>
<!--△△jQuery△△-->
<script data-cfasync="false" src="https://www.pescadogames.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
</body>
</html>