flipIt()
画像を反転する機能があります。しかし、私がやりたいのは、ユーザーが画像をクリックしたときに動的な div (背景とテキスト) を作成し、画像が反転したときにその div が表示されるようにすることです。
このフィドルは機能していません。助けてください。
http://jsfiddle.net/RQ62f/13/
$("img").click(function(){
alert('m called');
$(this).wrap('<div class="foobar"/>');
$(this).css("-webkit-transform-style","preserve-3d");
$(this).css("-webkit-transition","all 1.0s linear");
$(this).css("transform-style","preserve-3d");
$(this).css("transition","all 1.0s linear");
$(this).css("-webkit-transform","rotateY(180deg)");
$(this).css("transform","rotateY(180deg)");
});