3/4/2011, 9:35 am
Super Mod
First topic message reminder :
À! Xem ở đây: http://jquery.com/demo/thickbox/
MÌnh chỉ viết cái ứng dụng để xem ảnh trong forumotion ta thôi. Ở IE xem ảnh như bt.
Bạn test dumg mình luôn nhé:
Trong template Overall_header tìm:
Thay bằng:
Chèn vào CSS:
Nguồn CP.INFO
À! Xem ở đây: http://jquery.com/demo/thickbox/
MÌnh chỉ viết cái ứng dụng để xem ảnh trong forumotion ta thôi. Ở IE xem ảnh như bt.
Bạn test dumg mình luôn nhé:
Trong template Overall_header tìm:
- Code:
<script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
Thay bằng:
- Code:
<script>
/* Coded by HuyLord */
function init() {
var maxWidth = 200;
for (var i = 0; i < document.images.length; i++){
if(document.images[i].width > maxWidth ){
image = new Image();
image = document.images[i];
linkimage = document.images[i].src;
newImage = image.cloneNode( true ) ;
if( parentNode = image.parentNode )
{
elem = document.createElement("a");
elem.setAttribute( "href", linkimage );
elem.setAttribute( "class", "thickbox");
elem.setAttribute( "ref", "galerrybox");
elem.appendChild( newImage );
frag = document.createElement("div");
frag.appendChild( elem );
if( image.outerHTML )
{
image.outerHTML = frag.innerHTML;
} else {
parentNode.replaceChild( elem, image );
}
}
}
}
};
/* for Mozilla */
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, false);
}
/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script defer src=http://spacedisks.comze.com/lb.js><"+"/script>");
/*@end @*/
/* for other browsers */
window.onload = init;
</script>
<script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
<script src="http://jquery.com/demo/thickbox/thickbox-code/thickbox.js"></script>
Chèn vào CSS:
Nguồn CP.INFO