|
Вы находитесь в режиме просмотра. Для участия в дискуссиях клуба вам необходимо зарегистрироваться (если вы этого не сделали) и войти в систему.
|
|
Ну смотри:-)(+)
Отправлено: AHTOXA 09.02.2010 в 12:33
|
Скрипт такой:
pre
function initPostImages(context)
{
if (hidePostImg) return;
var $in_spoilers = $( div.sp-body var.postImg , context);
$( var.postImg , context).not($in_spoilers).each(function(){
var $v = $(this);
var src = $v.attr( title );
var $img = $( img src=" + src + " class=" + $v.attr( className ) + " alt="pic" / );
$img = fixPostImage($img);
var maxW = ($v.hasClass( postImgAligned )) ? postImgAligned_MaxWidth : postImg_MaxWidth;
$img.bind( click , function(){ return imgFit(this, maxW); });
if (user.opt_js.i_aft_l) {
$( #preload ).append($img);
var loading_icon = a href=" + src + " target="_blank" img src="http://static.torrents.ru/templates/default/images/loading_3.gif" alt="" / /a ;
$v.html(loading_icon);
if ($.browser.msie) {
$v.after( wbr );
}
$img.one( load , function(){
imgFit(this, maxW);
$v.empty().append(this);
});
}
else {
$img.one( load , function(){ imgFit(this, maxW) });
$v.empty().append($img);
if ($.browser.msie) {
$v.after( wbr );
}
}
});
}
/pre
А сами картинки вставляются вот в таком виде:
pre
var class="postImg postImgAligned img-right" title="http://i38.tinypic.com/bhd0yr.jpg"
/var
/pre
Не знаю уж, как тут вставится... |
|
|
|