728x90
<style>
.marquee{
width: 500px;
background-color: black;
white-space: nowrap;
overflow: hidden;
}
.marquee-text {
display: inline-block;
width: 260px;
font-size: 24px;
font-weight: bold;
color: #ffd000;
animation: scroll 3s linear infinite;
}
.marquee-text:before {
content: "SERVICE ERROR";
}
@keyframes scroll {
100% {
transform: translateX(-100%);
}
}
</style>
<div class="marquee">
<div class="marquee-text"></div><div class="marquee-text"></div><div class="marquee-text"></div>
</div>
class marquee-text안에 before요소로 텍스트를 넣어서
애니메이션 효과, infinite를 줘서 무한히 흐르게 한다
white-space : nowrap 으로 줄넘김을 방지한다. 하지 않으면 줄넘김이 자동으로 돼서 글자가 가로로 배치되는게 아니라 부모의 width값보다 넘어가면 글자가 밑으로 배치되게 된다.
overflow hidden을 적용해서 글자가 검은색의 배경을 가진 부모요소 안에만 보이게 한다
코드파일
index.html 안에 css랑 html코드 둘 다 들어가있음
'마크업 언어 > CSS' 카테고리의 다른 글
[CSS] input[type=file] 에서 파일찾기 커스텀하는 법 (0) | 2024.02.02 |
---|---|
[CSS] fixed / relative 선언 z-index 차이 (0) | 2024.01.24 |
[CSS] aspect-ratio 비율을 설정하는 CSS (0) | 2023.09.27 |
[CSS] 미디어 쿼리 (0) | 2023.09.22 |
[CSS] unset 부모값 / 초기값으로 설정하는 CSS (0) | 2023.09.20 |