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

CSS로 뒤집기 효과

<시간/>

뒤집기 효과는 물체의 거울 이미지를 만드는 데 사용됩니다. 이 필터에서 다음 매개변수를 사용할 수 있습니다.

S.No
매개변수 및 설명
1
뒤집기
수평 미러 이미지 생성
2
FlipV
수직 미러 이미지 생성

예시

뒤집기 효과를 설정하려면

<html>
   <head>
   </head>
   <body>
      <img src = "/css/images/logo.png" alt = "CSS Logo" style = "Filter: FlipH">
      <img src = "/css/images/logo.png" alt = "CSS Logo" style = "Filter: FlipV">
      <p>Text Example:</p>
      <div style = "width: 300;
         height: 50;
         font-size: 30pt;
         font-family: Arial Black;
         color:red;
         Filter: FlipV">CSS Tutorials</div>
   </body>
</html>