Display inline image when it starts loading,
Rewrote inline-expanding.js to display full image as soon as it starts loading. Modified expand-all-images.js to work with the new change Moved max-width to style.css
This commit is contained in:
parent
26130c43ea
commit
a723ff8e66
@ -34,7 +34,7 @@ onready(function(){
|
|||||||
$('div#shrink-all-images a')
|
$('div#shrink-all-images a')
|
||||||
.text(_('Shrink all images'))
|
.text(_('Shrink all images'))
|
||||||
.click(function(){
|
.click(function(){
|
||||||
$('a img.post-image').each(function() {
|
$('a img.full-image').each(function() {
|
||||||
if ($(this).parent()[0].dataset.expanded)
|
if ($(this).parent()[0].dataset.expanded)
|
||||||
$(this).parent().click();
|
$(this).parent().click();
|
||||||
});
|
});
|
||||||
|
@ -18,13 +18,23 @@ onready(function(){
|
|||||||
|
|
||||||
for (var i = 0; i < link.length; i++) {
|
for (var i = 0; i < link.length; i++) {
|
||||||
if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) {
|
if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) {
|
||||||
link[i].childNodes[0].style.maxWidth = '98%';
|
|
||||||
link[i].onclick = function(e) {
|
link[i].onclick = function(e) {
|
||||||
|
var img;
|
||||||
|
var loadImage = function(img, thumb) {
|
||||||
|
if (img.naturalWidth) {
|
||||||
|
thumb.style.display = 'none';
|
||||||
|
img.style.display = '';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return thumb.parentNode.timeout = setTimeout(loadImage, 30, img, thumb);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (this.childNodes[0].className == 'hidden')
|
if (this.childNodes[0].className == 'hidden')
|
||||||
return false;
|
return false;
|
||||||
if (e.which == 2 || e.metaKey)
|
if (e.which == 2 || e.ctrlKey) //open in new tab
|
||||||
return true;
|
return true;
|
||||||
if (!this.dataset.src) {
|
if (!this.dataset.expanded) {
|
||||||
this.parentNode.removeAttribute('style');
|
this.parentNode.removeAttribute('style');
|
||||||
this.dataset.expanded = 'true';
|
this.dataset.expanded = 'true';
|
||||||
|
|
||||||
@ -33,29 +43,26 @@ onready(function(){
|
|||||||
this.childNodes[0].style.display = 'block';
|
this.childNodes[0].style.display = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dataset.src= this.childNodes[0].src;
|
|
||||||
this.dataset.width = this.childNodes[0].style.width;
|
|
||||||
this.dataset.height = this.childNodes[0].style.height;
|
|
||||||
|
|
||||||
|
|
||||||
this.childNodes[0].src = this.href;
|
|
||||||
this.childNodes[0].style.width = 'auto';
|
|
||||||
this.childNodes[0].style.height = 'auto';
|
|
||||||
this.childNodes[0].style.opacity = '0.4';
|
this.childNodes[0].style.opacity = '0.4';
|
||||||
this.childNodes[0].style.filter = 'alpha(opacity=40)';
|
this.childNodes[0].style.filter = 'alpha(opacity=40)';
|
||||||
this.childNodes[0].onload = function() {
|
|
||||||
this.style.opacity = '';
|
img = document.createElement('img');
|
||||||
delete this.style.filter;
|
img.className = 'full-image';
|
||||||
}
|
img.setAttribute('src', this.href);
|
||||||
|
img.setAttribute('alt', 'Fullsized image');
|
||||||
|
img.style.display = 'none';
|
||||||
|
this.appendChild(img);
|
||||||
|
|
||||||
|
this.timeout = loadImage(img, this.childNodes[0]);
|
||||||
} else {
|
} else {
|
||||||
|
clearTimeout(this.timeout);
|
||||||
if (~this.parentNode.className.indexOf('multifile'))
|
if (~this.parentNode.className.indexOf('multifile'))
|
||||||
this.parentNode.style.width = (parseInt(this.dataset.width)+40)+'px';
|
this.parentNode.style.width = (parseInt(this.dataset.width)+40)+'px';
|
||||||
this.childNodes[0].src = this.dataset.src;
|
|
||||||
this.childNodes[0].style.width = this.dataset.width;
|
this.childNodes[0].style.opacity = '';
|
||||||
this.childNodes[0].style.height = this.dataset.height;
|
this.childNodes[0].style.display = '';
|
||||||
|
this.removeChild(this.childNodes[1]);
|
||||||
delete this.dataset.expanded;
|
delete this.dataset.expanded;
|
||||||
delete this.dataset.src;
|
|
||||||
delete this.childNodes[0].style.opacity;
|
|
||||||
delete this.childNodes[0].style.filter;
|
delete this.childNodes[0].style.filter;
|
||||||
|
|
||||||
if (localStorage.no_animated_gif === 'true' && typeof unanimate_gif === 'function') {
|
if (localStorage.no_animated_gif === 'true' && typeof unanimate_gif === 'function') {
|
||||||
@ -63,10 +70,10 @@ onready(function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
if (window.jQuery) {
|
if (window.jQuery) {
|
||||||
$('div[id^="thread_"]').each(inline_expand_post);
|
$('div[id^="thread_"]').each(inline_expand_post);
|
||||||
|
@ -194,6 +194,10 @@ img.banner,img.board_image {
|
|||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.full-image {
|
||||||
|
max-width: 98%;
|
||||||
|
}
|
||||||
|
|
||||||
div.post .post-image {
|
div.post .post-image {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 0 20px 0 0;
|
margin: 0 20px 0 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user