Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 목록의 글머리 기호에 애니메이션을 적용하는 방법

<시간/>

정렬되지 않은 목록에서 글머리 기호 스타일을 지정하려면 list-style por

를 사용할 수 있습니다.

구문

다음과 같은 CSS li-style 속성의 구문 -

li {
   list-style: /*value*/
}

예시

다음 예는 CSS li-style 속성을 보여줍니다.

<!DOCTYPE html>
<html>
   <head>
      <style>
         li {
            margin: 3px 0;
            padding: 2%;
            width: 28%;
            line-height: 1.2%;
            list-style: none;
            border-radius: 5% 0 0 5%;
            box-shadow: -10px 2px 4px 0 chartreuse;
            color: cornflowerblue;
         }
         li:hover {
            box-shadow: -10px 2px 4px 0 blue!important;
            font-size: 1.4em;
         }
      </style>
   </head>
   <body>
      <ul>
         <li>a</li>
         <li>b</li>
         <li>c</li>
         <li>d</li>
      </ul>
   </body>
</html>

이것은 다음과 같은 출력을 제공합니다.

CSS를 사용하여 목록의 글머리 기호에 애니메이션을 적용하는 방법

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         ol {
            list-style: none;
            counter-reset: li;
            overflow: hidden;
         }
         li {
            margin-right: 10%;
            padding: 2%;
            width: 15%;
            float: left;
            line-height: 1.2%;
            font-weight: bold;
            counter-increment: li;
            box-shadow: inset 2px 14px 10px lightblue;
         }
         li:hover {
            box-shadow: inset 6px 14px 10px lightgreen!important;
            font-size: 1.4em;
         }
         li::before {
            content: counter(li);
            color: seagreen;
            display: inline-block;
            width: 40%;
            margin-left: -2em;
         }
      </style>
   </head>
   <body>
      <ol>
         <li>a</li>
         <li>b</li>
         <li>c</li>
      </ol>
   </body>
</html>

이것은 다음과 같은 출력을 제공합니다.

CSS를 사용하여 목록의 글머리 기호에 애니메이션을 적용하는 방법