我有两个文件夹Js和zoom_assets .Iside Js我有文件custom.js,在zoom_assets里面我有jquery.smoothZoom.min.js。
custom.js具有打开图像的功能,jquery.smoothZoom.min.js具有缩放功能。
我需要在图像加载后禁用缩放功能。 我怎么能这样做?
我想在图片加载后从custom.js中禁用jquery.smoothZoom.min .js。 有可能,如果是的话,如果没有我怎么能禁用??。
答案 0 :(得分:0)
好。您可能需要一个保存图像状态的临时变量。
var imageLoadStatus = false;
function zoom() {
if (imageLoadStatus == false) {
// do zoom code
imageLoadStatus = true;
}
}
function imageLoadToggle() {
if (imageLoadStatus == false) {
// load Image
imageLoadStatus = true;
} else(imageLoadStatus == true) {
// quit / unload image
imageLoadStatus = false;
}
}