0

ページの読み込み後に親に合わせてサイズを変更し(おそらくアニメーションをほとんど使用しない)、ぼかしたい画像があります。任意のヒント?

ありがとう!

L

4

1 に答える 1

1
var img = $('.anImage'),
    offset = img.offset();

// position image absolutely in the same position to allow it to expand
img.css({
       position: "absolute",
       top: offset.top,
       left: offset.left,
       zIndex: 100
   })
   // animate expansion
   .animate({
       top: 0,
       left: 0,
       width: img.parent().width(),
       height: img.parent().height()
   }, "fast")
   // fadeout
   .fadeOut("fast");

唯一の要件は、親要素をposition: relative.

于 2011-07-24T13:43:08.067 に答える