標註圖像我有flipIt()
功能翻轉圖像。但我想要做的是當用戶點擊圖像時,必須創建一個動態div(背景和一些文本),然後當圖像翻轉時該div必須可見。翻轉並與jQuery
這撥弄不工作,請幫助。
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)");
});
你有一個額外的 ''在jsfiddle中的代碼中「flipIt($(this)。);」糾正錯誤http://jsfiddle.net/RQ62f/15/ – arjuncc 2013-05-07 07:48:46
從側邊欄添加jquery。 – SachinGutte 2013-05-07 07:52:40
類似[this](http://jsfiddle.net/RQ62f/20/)? – Vucko 2013-05-07 07:54:44