我目前正在研究一個網站的背景,我想在上面添加一個懸停效果。雖然我遇到了一個問題,我在css樣式表上有我的背景圖像,並且在實現懸停時遇到了一些困難。如何在背景上做標題懸停效果?
我遇到了懸停效果的一些很好的資源,如this和this one。 github上的那個非常漂亮,但由於我對j查詢不是很瞭解,所以我會堅持基本的。
這是我在css上的後臺代碼,問題是我將如何實現從這裏懸停?
body {
min-width: 800px;
margin: 0px 0px 0px 0px;
border-left: 50px solid #000000;
background: #FF7F66 url('images/landscape1.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #666666;
font: 10px Verdana;
}
你嘗試過'body:hover {/ * styles * /}'嗎? – Oriol
你可以很容易地與http://ricostacruz.com/jquery.transit/類似。 – 2013-10-11 22:10:48
@Oriol不,我沒有,實際上我甚至不知道如何開始它。與文字懸停相同嗎? –