:JOtax/styles.css

Ernst (토론 | 기여)님의 2023년 11월 13일 (월) 19:24 판
.JO-tax-trigger {
	cursor: help;
}
.JO-tax-content {
  overflow:hidden;
  height:0px;
  opacity:0;
}
.JO-tax-trigger:hover > .JO-tax-content {
  animation: JO-tax-tap;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes JO-tax-tap {
  from {height:0px;opacity:0;}
  50% {height:50%;opacity:1;}
  to {height:100%;opacity:1;}
}