程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 數據-長按圖片 縮小 ,分區投放儲存

數據-長按圖片 縮小 ,分區投放儲存

編輯:編程綜合問答
長按圖片 縮小 ,分區投放儲存

長按圖片圖片實現圖片的縮小,並且會彈出四個分區,將圖片可以選擇投放進這四個區域的數據庫,實現分類。可以累積數據。

最佳回答:










分區1
分區2
分區3
分區4


function hide_button() { $('button').hide(); } function show_button() { $('button').show(); } function reset() { $('img').stop().animate({height: '500px', width:'500px'}, 200); } $( 'button' ).click( function() { $.ajax({ url:'/xxx.asp', type: 'POST', async: true, dataType: 'json', data: 'fenlei=' + $(this).text(), timeout: 60000 * 5, error: function(){ }, success: function( e ) { } }); hide_button(); reset(); }); $('img').mouseup( function(){ if( $('button').is(':hidden') == false ) { return; } reset(); }); $('img').mousedown( function(){ $(this).animate({height: '400px', width:'400px'}, 2000, function(){ show_button(); }) }); hide_button();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved