Skip to content

Commit

Permalink
add script.js; transitive loading; member contact icon - seil
Browse files Browse the repository at this point in the history
  • Loading branch information
seilk committed Jun 8, 2024
1 parent f27b859 commit 68d9e80
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 17 deletions.
14 changes: 14 additions & 0 deletions author/chanyoung-kim/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>



Expand Down
4 changes: 2 additions & 2 deletions author/seil-kang/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
21 changes: 9 additions & 12 deletions author/woojung-han/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
17 changes: 17 additions & 0 deletions css/wowchemy.css
Original file line number Diff line number Diff line change
Expand Up @@ -10003,3 +10003,20 @@ ul.ul-jour-rev-experience li .description p.journal {

ul.ul-jour-rev-experience li .description p {
margin: 0; }

/*************************************************
* Transition Loading Components
**************************************************/
.fade {
transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
.fade {
transition: none;
}
}

.fade:not(.show) {
opacity: 0;
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" integrity=""
crossorigin="anonymous" async></script>
<link rel="stylesheet" href="/css/wowchemy.css" />
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/libs/chroma/github-light.min.css" title="hl-light" media="print"
onload="this.media='all'">
<link rel="stylesheet" href="/css/libs/chroma/dracula.min.css" title="hl-dark" media="print"
Expand Down Expand Up @@ -537,7 +537,7 @@ <h1 class="mb-0">Publications</h1>
<div class="media stream-item view-compact">
<div class="media-body">
<div class="section-subheading article-title mb-0 mt-0"><a
href="/publication/2024-arxiv-wolf/">WoLF: Large Language Model Framework for
href="/publication/2024-arxiv-wolf/">WoLF: Wide-scope Large Language Model Framework for
CXR Understanding</a></div><a href="/publication/2024-arxiv-wolf/"
class="summary-link">
<div class="article-style">arxiv </div>
Expand Down Expand Up @@ -654,7 +654,7 @@ <h5 class="modal-title">Cite</h5><button type="button" class="close" data-dismis
</div>
</div>
<script src="/js/wowchemy-publication.js" type="module"></script>
<script></script>
<script src="/js/scripts.js"></script>
</body>

</html>
6 changes: 6 additions & 0 deletions js/scripts.js
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');
});
});

0 comments on commit 68d9e80

Please sign in to comment.