1)禁用右鍵單擊功能
如果你想為用戶保護(hù)網(wǎng)站信息,那么開發(fā)者可以使用這段代碼――禁用右鍵單擊功能。
//delete the default context menu
return false;
});
});
//Increase the text size
$(".increaseFont").click(function() {
var currentFontSize = $('html').css('font-size');
var currentFontSizeNumber = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNumber*1.2;
$('html').css('font-size', newFontSize);
return false;
});
//Decrease the Text Size
$(".decreaseFont").click(function() {
var currentFontSize = $('html').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*0.8;
$('html').css('font-size', newFontSize);
return false;
});
// Reset Font Size
$(".resetFont").click(function(){
$('html').css('font-size', originalFontSize);
});
});
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注