viiprogrammer Posted February 7, 2016 Report Share Posted February 7, 2016 После загрузки аватарки маленького размера на том же vii 2.0 получается такой баг: Аватарка как бы съезжает, после обновления страницы все становится на место, и так сделаем же чтобы все было норм без перезагрузки Откроем load_photo.tpl: Найдём там такой код: $('#ava').html('<img src="'+response+'" alt="" />'); И заменим его на: var newImg = new Image(); newImg.src = response; var height = newImg.height; var width = newImg.width; var pr = height * 100 / 230 * 2; $('#ava').html('<img style="margin-top:-'+pr+'px" src="'+response+'" alt="" />'); Все! Теперь аватар не будет съезжать! Кликни ! 3 Quote Link to comment Share on other sites More sharing options...
m4ks Posted April 11, 2016 Report Share Posted April 11, 2016 Спасибо, помог! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.