-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add script.js; transitive loading; member contact icon - seil
- Loading branch information
Showing
6 changed files
with
51 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,6 +120,20 @@ <h3> | |
</h3> | ||
</div> | ||
<ul class="network-icon" aria-hidden="true"> | ||
|
||
<li> | ||
<a href="mailto:[email protected]" aria-label="envelope"> | ||
<i class="fas fa-envelope big-icon"></i> | ||
</a> | ||
<a href="https://kochanha.github.io/" aria-label="link"> | ||
<i class="fa-solid fa-link big-icon"></i> | ||
</a> | ||
</li> | ||
|
||
|
||
|
||
|
||
</ul> | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,8 +101,8 @@ <h3> | |
<a href="mailto:[email protected]" aria-label="envelope"> | ||
<i class="fas fa-envelope big-icon"></i> | ||
</a> | ||
<a href="seilk.github.io" aria-label="link"> | ||
<i class="fa-solid fa-link"></i> | ||
<a href="https://seilk.github.io" aria-label="link"> | ||
<i class="fa-solid fa-link big-icon"></i> | ||
</a> | ||
</li> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,18 +96,15 @@ <h3> | |
</h3> | ||
</div> | ||
<ul class="network-icon" aria-hidden="true"> | ||
<li> | ||
<a href="mailto:[email protected]" aria-label="envelope"> | ||
<i class="fas fa-envelope big-icon"></i> | ||
</a> | ||
<a href="dnwjddl.github.io" aria-label="link"> | ||
<i class="fa-solid fa-link"></i> | ||
</a> | ||
</li> | ||
|
||
|
||
|
||
</ul> | ||
|
||
<li> | ||
<a href="mailto:[email protected]" aria-label="envelope"> | ||
<i class="fas fa-envelope big-icon"></i> | ||
</a> | ||
<a href="https://dnwjddl.github.io" aria-label="link"> | ||
<i class="fa-solid fa-link big-icon"></i> | ||
</a> | ||
</li> | ||
</div> | ||
</div> | ||
<div class="col-12 col-lg-8 members-info"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// 페이지가 로드되면 show 클래스를 fade 요소에 추가 | ||
window.addEventListener('load', function() { | ||
document.querySelectorAll('.fade').forEach(function(element) { | ||
element.classList.add('show'); | ||
}); | ||
}); |