我對網頁設計有點新,但我覺得我主要知道自己在做什麼。我有幾個div,所有類.picture
都與.description
div內的文本分組在一起。我正在使用jQuery,因此當用戶將鼠標放在.picture
div中的一張圖片上時,分配給該特定圖片的文本將淡入視圖。我知道我可以給每個div一個id並在jQuery中單獨訪問它們,但是我可以做一些操作,例如循環,這樣可以讓我只呼叫.mouseenter()
和.mouseleave()
一次,但仍然可以動畫所有div?我應該將每一對img和p分成另一個div嗎?jQuery - 在單個類中單獨選擇div
HTML:
<div class="picture" id="pic1"><img src="DSCI0003.jpg"/ height="400"></div><div class="description"><p>Gus</p></div><br/><!--Insert pictures of board members. Specify only height of width! -->
<div class="picture" id="pic2"><img src="DSCI0003.jpg"/ height="400"></div><div class="description"><p>Gus</p></div><br/>
<div class="picture" id="pic3"><img src="DSCI0003.jpg"/ height="400"></div><div class="description"><p>Gus</p></div><br/>
你能描述你在找什麼?你是什麼意思,但仍然動畫所有的divs?順便說一句,你爲什麼要在img src之後放一個'/'? –