배경을 슬라이드하려는 버튼이 있습니다 from #000 to #ccc
. 문제는 마우스를 올리거나 마우스를 가져갈 때 버튼 배경의 슬라이드 전환을 수행하는 방법입니다. jQuery로이 작업을 수행 할 수 있습니까? 매우 중요합니다. 저는 배경 이미지를 사용하여 이미지에 대한 모든 제안을하고 싶지 않습니다. 스킵 pls.마우스로 jQuery로 왼쪽에서 오른쪽으로 백그라운드 위치로 슬라이드 입력
이것은 CSS로만 만든 성가신 바이올린이지만 꼭 필요한 방식으로 위에서 아래로, 그리고 왼쪽에서 오른쪽으로는 작동하지 않습니다. http://jsfiddle.net/xu3ck/166/
<a href="#" class="btn two">Submit Form</a>
.btn {
width: 180px;
text-decoration: none;
height: 40px;
border-radius: 10px;
text-align: center;
color: white;
line-height: 40px;
font-size: 20px;
font-family: arial, sans-serif;
margin: 20px;
float: left;
display: block;
color: white;
box-shadow: rgba(0,0,0,0.3) 1px 1px 3px inset;
}
.two {
background: linear-gradient(#111, #eee);
background-repeat: repeat;
background-size: 100% 200%;
transition: all .5s linear;
}
.two:hover, .two:focus, .two:active {
background-position: 0 -200%;
}
타이.
Ty :이 문제를 해결하기 위해 :)하지만 ie8이 css3을 이해할 수 없기 때문에 jQuery로 작성해야합니다. 불행히도 IE8 +를 지원해야합니다. – BurebistaRuler