bolo-fantastic图片显示优化
This commit is contained in:
parent
b62666677d
commit
851f80e83d
@ -89,21 +89,23 @@ $(document).ready(function(){
|
|||||||
var w = img.width;
|
var w = img.width;
|
||||||
var h = img.height;
|
var h = img.height;
|
||||||
var url = $(img).attr("src");
|
var url = $(img).attr("src");
|
||||||
showImage(w, h, url);
|
var alt = $(img).attr("alt");
|
||||||
|
showImage(w, h, url, alt);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
function showImage(w, h,url, alt){
|
||||||
function showImage(w, h,url){
|
layer.photos({
|
||||||
layer.open({
|
photos:{
|
||||||
type:1,
|
"title":"${blogTitle!}图片显示",
|
||||||
maxmin:true,
|
"id":"",
|
||||||
offset: 'auto',
|
"data":[{
|
||||||
area: [w, h],
|
"alt":alt,
|
||||||
title: "${blogTitle!}图片显示",
|
"src":url,
|
||||||
content: '<img src="' + url + '" alt="${blogTitle!}图片" ' + url +' 显示异常>'
|
"thumb":url
|
||||||
|
}]
|
||||||
|
},anim: 5
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function enterSearch(event){
|
function enterSearch(event){
|
||||||
if(event.keyCode == "13"){
|
if(event.keyCode == "13"){
|
||||||
search();
|
search();
|
||||||
|
Loading…
Reference in New Issue
Block a user