2012-11-10 30 views

回答

0

根據您的瀏覽器支持,這可能是accomplished using CSS animations (example)

h2 { 
    background: rgba(0, 0, 0, 0.5); 
} 

.image:hover h2 { 
    background: rgba(0, 0, 0, 0.8); 
    -moz-animation: 2s ease 0s normal none infinite pulse; 
    -webkit-animation: 2s ease 0s normal none infinite pulse; 
} 

@-moz-keyframes pulse { 
    0% { color: #000 } 
    50% { color: #FFF } 
    100% { color: #000; } 
} 

@-webkit-keyframes pulse { 
    0% { color: #000 } 
    50% { color: #FFF } 
    100% { color: #000; } 
} 

如果需要舊的瀏覽器的支持,而不是RGBA的,使用PNG的背景圖像與Alpha透明度,並jQuery animate()而不是CSS動畫。