jQuery toggleClass example

Toggle class name on click in jQuery

by wllai2001

HTML

<div class="logo-banner">
  <a href="https://www.stust.edu.tw/"><img src="https://www.stust.edu.tw/assets/images/stust-logo.png" alt="南臺科技大學"></a>
</div>

CSS

.logo-banner {
  width: 104px;
  height: 200px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-banner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}