- 長按圖片 縮小 ,分區投放儲存
-
長按圖片圖片實現圖片的縮小,並且會彈出四個分區,將圖片可以選擇投放進這四個區域的數據庫,實現分類。可以累積數據。
最佳回答:
分區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();