Code:
.DDImage {
width:100%;
}
Code:
dsetting: {trigger:'mouseover', preload:'yes', fx:'fade', fxduration:500, enabletitle:'yes'}, //default settings
buildimage:function($, $anchor, setting){
var imghtml='<img class="DDImage" src="'+$anchor.attr('href')+'" style="border-width:0;" />'
if ($anchor.attr('name'))
imghtml='<a href="'+$anchor.attr('name')+'">'+imghtml+'</a>'
imghtml='<div>'+imghtml+((setting.enabletitle!='no' && $anchor.attr('title')!='')? '<br />'+$anchor.attr('title') : '')+'</div>'
return $(imghtml)
},
showimage:function($image, setting){
$image.stop()[setting.fxfunc](setting.fxduration, function(){
if (this.style && this.style.removeAttribute)
this.style.removeAttribute('filter') //fix IE clearType problem when animation is fade-in
})
}
}
Code:
<a href="http://www.nasa.gov/images/content/167040main_image_feature_738_ys_4.jpg" name="http://www.vicsjavascripts.org.uk/" rel="enlargeimage" rev="targetdiv:loadarea" title="The Universe is just waiting to be explored">Saturn #1</a><br />
<div id="loadarea"></div>
or
Code:
dsetting: {trigger:'mouseover', preload:'yes', fx:'fade', fxduration:500, enabletitle:'yes'}, //default settings
buildimage:function($, $anchor, setting){
var imghtml='<img class="'+$anchor.attr('class')+'" src="'+$anchor.attr('href')+'" style="border-width:0;" />'
if ($anchor.attr('name'))
imghtml='<a href="'+$anchor.attr('name')+'">'+imghtml+'</a>'
imghtml='<div>'+imghtml+((setting.enabletitle!='no' && $anchor.attr('title')!='')? '<br />'+$anchor.attr('title') : '')+'</div>'
return $(imghtml)
},
showimage:function($image, setting){
$image.stop()[setting.fxfunc](setting.fxduration, function(){
if (this.style && this.style.removeAttribute)
this.style.removeAttribute('filter') //fix IE clearType problem when animation is fade-in
})
}
}
with
Code:
<a class="DDImage" href="http://www.nasa.gov/images/content/167040main_image_feature_738_ys_4.jpg" name="http://www.vicsjavascripts.org.uk/" rel="enlargeimage" rev="targetdiv:loadarea" title="The Universe is just waiting to be explored"><img src="http://www.vicsjavascripts.org.uk/StdImages/1.gif" /></a><br />
Bookmarks