스프라이트 이미지 의 'background-position'과 CSS 사이에서만 페이드하고 싶습니다. 튜토리얼을 많이 찾았지만 다음과 같은 간단한 것을 찾지 못했습니다.CSS3 - 스프라이트 이미지의 'background-position'사이를 흐리게 처리합니다.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 - Fade between 'background-position' of a sprite image</title>
<style type="text/css">
div{
width: 120px;
height: 60px;
background-image: url('sprite.jpg');
background-repeat: no-repeat;
background-position: 0 0;
}
div:hover{
background-position: 0 -60px;
}
</style>
</head>
<body>
<div></div>
</html>
고맙습니다. 이 같은
무엇이 작동하지 않습니까? – chriz
페이드가 작동하지 않습니다. – CBuzatu
페이드를 설정하지 않았습니다.지원하려는 브라우저의 수에 따라 javascript 또는 css3 애니메이션을 사용하여 수행 할 수 있습니다. – Kyle