forked from pending-done/Intro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubPage_mj.html
More file actions
164 lines (156 loc) · 6.14 KB
/
subPage_mj.html
File metadata and controls
164 lines (156 loc) · 6.14 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width" />
<title>subPage</title>
</head>
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="common.css">
<link href="https://fonts.googleapis.com/css2?family=Playwrite+HR:wght@100..400&display=swap" rel="stylesheet" />
<style>
.box-center {
display: flex;
justify-content: center;
align-items: center;
}
</style>
<!-- 방명록 JS 코드 -->
<link href="guest_book.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script type="module" src="./scripts/guest_book.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<body>
<input type="hidden" value="정민지" id="myName">
<div id="header"></div>
<div class="header">
<h2>INTRODUCE OUR TEAM</h2>
<div class="memberIntroduce">
<div class="image">
<img src="./img/정민지_상세.jpeg" alt="프로필사진" />
</div>
<div class="introBox">
<div class="box box1">
<p>MY NAME : 정민지</p>
</div>
<div class="box box2">
<p>안녕하세요.<br />제 MBTI는 INFJ입니다. 최근에는 ISTJ로 바꼈어요.</p>
</div>
<div class="box box3 box-center">
<p>안녕하세요 저는 새로운 것을 배우는 것을 좋아합니다.</p>
</div>
<div class="box box4">
<p>어려운 문제를 팀원과 함께 해결하는 것을 좋아합니다.</p>
</div>
<div class="box box5">
<p>LINK</p>
<a href="https://github.com/jungminji0215"><ion-icon name="logo-github"></ion-icon></a>
<a href="https://jungminji0215.tistory.com/"><ion-icon name="logo-venmo"></ion-icon></a>
</div>
</div>
</div>
</div>
<div class="section">
<div class="beforeButton">
<a href="subPage_jy.html">
<svg id="before" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
style="fill: rgba(0, 0, 0, 1);transform: msFilter;">
<path d="m4.431 12.822 13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-1.569-.823l-13 9a1.003 1.003 0 0 0 0 1.645z"></path>
</svg>
</a>
<p class="beforeShowP">이준열</p>
</div>
<div class="afterButton">
<p class="showP">정소현</p>
<a href="subPage_sh.html">
<svg id="after" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
style="fill: rgba(0, 0, 0, 1);transform: msFilter;">
<path
d="M5.536 21.886a1.004 1.004 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A1 1 0 0 0 5 3v18a1 1 0 0 0 .536.886z">
</path>
</svg>
</a>
</div>
</div>
<div id="guestbook">
<h2>방명록</h2>
<div class="input-container">
<div class="input-name-pw-container">
<input type="text" class="input-name" id="guest-name" placeholder="이름" />
<input type="password" class="input-pw" id="guest-pw" placeholder="비밀번호" maxlength="4" />
<div class="input-submit-container">
<!-- <button onclick="addEntry()">등록</button> -->
<button id="addEntry">등록</button>
</div>
</div>
<div class="input-message-container">
<textarea type="text" class="input-message" id="guest-message" placeholder="내용을 입력하세요"></textarea>
</div>
</div>
<div class="guestbook-entries" id="guestbook-entries">
<!-- Guestbook entries will be added here -->
</div>
</div>
<div id="footer"></div>
<!-- 비밀번호 모달 -->
<div class="modal fade" id="passwordModal" tabindex="-1" aria-labelledby="exampleModalLabel" style="display: none;"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-2" id="exampleModalLabel">비밀번호</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="recipient-name" class="col-form-label">Recipient:</label>
<input type="password" class="form-control" id="inputPw" maxlength="4">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" onclick="closeModal()">닫기</button>
<button type="button" class="btn btn-primary" id="validPassword">확인</button>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$("#after").hover(function () {
$(".showP").addClass("hoverEffect");
}, function () {
$(function () {
$(".showP").removeClass("hoverEffect");
})
})
})
$(document).ready(function () {
$("#before").hover(function () {
$(".beforeShowP").addClass("hoverEffect");
}, function () {
$(function () {
$(".beforeShowP").removeClass("hoverEffect");
})
})
})
// 비번 모달 닫기
function closeModal() {
$('#passwordModal').modal('hide');
$("#inputPw").val("");
$("#inputPw").text("");
}
</script>
<!-- <script src="script.js"></script> -->
<script src="headerFooter.js"></script>
<script src="scroll.js"></script>
</body>
</html>