jq-delay()知識點

delay(duration,[queueName])

duration:延時時間,單位:毫秒

queueName:隊列名詞,默認是Fx,動畫隊列。


$('.jhwhy')

  .css({ 'width':50 })
  .delay(1000)

  .css({ 'width':200 })   不能用


$('.jhwhy')
  .css({ 'width':50 })
  .delay(1000)
  .animate({'width': 200}, 800);   能用 


只有後面有動畫效果纔會執行


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章