2016-06-21 2 views

답변

0

를 사용하여 웹 관리자 (오른쪽 클릭하고 요소 검사를 선택합니다) 찾을 수 있습니다.

h1.site__title { 
    color: #f35626; 
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;. 
    -webkit-animation: hue 60s infinite linear; 
} 

@-webkit-keyframes hue { 
    from { 
    -webkit-filter: hue-rotate(0deg); 
    } 

    to { 
    -webkit-filter: hue-rotate(-360deg); 
    } 
} 
0

h1 { 
 
    -webkit-background-clip: text; 
 
    -webkit-text-fill-color: transparent; 
 
    -webkit-animation: colored 10s infinite linear; 
 
    background-image: -webkit-linear-gradient(90deg, #f35626, #feab3a); 
 
} 
 
@-webkit-keyframes colored { 
 
    from { 
 
    -webkit-filter: hue-rotate(0deg); 
 
    } 
 
    to { 
 
    -webkit-filter: hue-rotate(-360deg); 
 
    } 
 
}
<h1>Colored text</h1>

그것을 밖으로 시도 :

그들은 다음과 같은 스타일 정의를 가진 H1이