JavaScript - Redimensionar imagenes con javascript

 
Vista:

Redimensionar imagenes con javascript

Publicado por Sam (106 intervenciones) el 09/02/2014 22:02:21
Hola amigos/as, verán tengo un código javascript muy usado en internet para mostrar imágenes de galerías de fotos al estilo polaroid, la galería se llama slimbox, lightbox o algo asi.

El caso es que como digo el código me muestra las imágenes perfectamente pero no consigo configurar el código en cuestión para que cuando me amplie las imágenes (previamente haciendo click en su correspondiente miniatura), pues aparezcan agrandadas pero con un tamaño de grande como máximo, por ejemplo que pueda configurarlo
para que no exceda la imagen de "n" pixeles de alto y/o "n" pixeles de ancho.
Por que ahora se amplían a tamaño de la foto original y si la imagen es muy muy grande se sale incluso de la pantalla del ordenador, y no se ve ni tan siguiera el botón de "cerrar imagen".

No se javascript y esto es lo único que me hace falta para terminar con mi galería de imágenes.

Si alguien pudiera decirme que tengo que poner en el siguiente código para esto que necesito le estaría muy agradecido.

Este es el código:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
(function (w) {
        var E = w(window),
            u, f, F = -1,
            n, x, D, v, y, L, r, m = !window.XMLHttpRequest,
            s = [],
            l = document.documentElement,
            k = {}, t = new Image(),
            J = new Image(),
            H, a, g, p, I, d, G, c, A, K;
        w(function () {
            w("body").append(w([H = w('<div id="lbOverlay" />').click(C)[0], a = w('<div id="lbCenter" />')[0], G = w('<div id="lbBottomContainer" />')[0]]).css("display", "none"));
            g = w('<div id="lbImage" />').appendTo(a).append(p = w('<div style="position: relative;" />').append([I = w('<a id="lbPrevLink" href="#" />').click(B)[0], d = w('<a id="lbNextLink" href="#" />').click(e)[0]])[0])[0];
            c = w('<div id="lbBottom" />').appendTo(G).append([w('<a id="lbCloseLink" href="#" />').click(C)[0], A = w('<div id="lbCaption" />')[0], K = w('<div id="lbNumber" />')[0], w('<div style="clear: both;" />')[0]])[0]
        });
        w.slimbox = function (O, N, M) {
            u = w.extend({
                loop: false,
                overlayOpacity: 0.8,
                overlayFadeDuration: 400,
                resizeDuration: 400,
                resizeEasing: "swing",
                initialWidth: 250,
                initialHeight: 250,
                imageFadeDuration: 400,
                captionAnimationDuration: 400,
                counterText: "Image {x} of {y}",
                closeKeys: [27, 88, 67],
                previousKeys: [37, 80],
                nextKeys: [39, 78]
            }, M);
            if (typeof O == "string") {
                O = [
                    [O, N]
                ];
                N = 0
            }
            y = E.scrollTop() + (E.height() / 2);
            L = u.initialWidth;
            r = u.initialHeight;
            w(a).css({
                top: Math.max(0, y - (r / 2)),
                width: L,
                height: r,
                marginLeft: -L / 2
            }).show();
            v = m || (H.currentStyle && (H.currentStyle.position != "fixed"));
            if (v) {
                H.style.position = "absolute"
            }
            w(H).css("opacity", u.overlayOpacity).fadeIn(u.overlayFadeDuration);
            z();
            j(1);
            f = O;
            u.loop = u.loop && (f.length > 1);
            return b(N)
        };
        w.fn.slimbox = function (M, P, O) {
            P = P || function (Q) {
                return [Q.href, Q.title]
            };
            O = O || function () {
                return true
            };
            var N = this;
            return N.unbind("click").click(function () {
                var S = this,
                    U = 0,
                    T, Q = 0,
                    R;
                T = w.grep(N, function (W, V) {
                    return O.call(S, W, V)
                });
                for (R = T.length; Q < R; ++Q) {
                    if (T[Q] == S) {
                        U = Q
                    }
                    T[Q] = P(T[Q], Q)
                }
                return w.slimbox(T, U, M)
            })
        };
 
        function z() {
            var N = E.scrollLeft(),
                M = E.width();
            w([a, G]).css("left", N + (M / 2));
            if (v) {
                w(H).css({
                    left: N,
                    top: E.scrollTop(),
                    width: M,
                    height: E.height()
                })
            }
        }
 
        function j(M) {
            if (M) {
                w("object").add(m ? "select" : "embed").each(function (O, P) {
                    s[O] = [P, P.style.visibility];
                    P.style.visibility = "hidden"
                })
            } else {
                w.each(s, function (O, P) {
                    P[0].style.visibility = P[1]
                });
                s = []
            }
            var N = M ? "bind" : "unbind";
            E[N]("scroll resize", z);
            w(document)[N]("keydown", o)
        }
 
        function o(O) {
            var N = O.which,
                M = w.inArray;
            return (M(N, u.closeKeys) >= 0) ? C() : (M(N, u.nextKeys) >= 0) ? e() : (M(N, u.previousKeys) >= 0) ? B() : null
        }
 
        function B() {
            return b(x)
        }
 
        function e() {
            return b(D)
        }
 
        function b(M) {
            if (M >= 0) {
                F = M;
                n = f[F][0];
                x = (F || (u.loop ? f.length : 0)) - 1;
                D = ((F + 1) % f.length) || (u.loop ? 0 : -1);
                q();
                a.className = "lbLoading";
                k = new Image();
                k.onload = i;
                k.src = n
            }
            return false
        }
 
        function i() {
            a.className = "";
            w(g).css({
                backgroundImage: "url(" + n + ")",
                visibility: "hidden",
                display: ""
            });
            w(p).width(k.width);
            w([p, I, d]).height(k.height);
            w(A).html(f[F][1] || "");
            w(K).html((((f.length > 1) && u.counterText) || "").replace(/{x}/, F + 1).replace(/{y}/, f.length));
            if (x >= 0) {
                t.src = f[x][0]
            }
            if (D >= 0) {
                J.src = f[D][0]
            }
            L = g.offsetWidth;
            r = g.offsetHeight;
            var M = Math.max(0, y - (r / 2));
            if (a.offsetHeight != r) {
                w(a).animate({
                    height: r,
                    top: M
                }, u.resizeDuration, u.resizeEasing)
            }
            if (a.offsetWidth != L) {
                w(a).animate({
                    width: L,
                    marginLeft: -L / 2
                }, u.resizeDuration, u.resizeEasing)
            }
            w(a).queue(function () {
                w(G).css({
                    width: L,
                    top: M + r,
                    marginLeft: -L / 2,
                    visibility: "hidden",
                    display: ""
                });
                w(g).css({
                    display: "none",
                    visibility: "",
                    opacity: ""
                }).fadeIn(u.imageFadeDuration, h)
            })
        }
 
        function h() {
            if (x >= 0) {
                w(I).show()
            }
            if (D >= 0) {
                w(d).show()
            }
            w(c).css("marginTop", -c.offsetHeight).animate({
                marginTop: 0
            }, u.captionAnimationDuration);
            G.style.visibility = ""
        }
 
        function q() {
            k.onload = null;
            k.src = t.src = J.src = n;
            w([a, g, c]).stop(true);
            w([I, d, g, G]).hide()
        }
 
        function C() {
            if (F >= 0) {
                q();
                F = x = D = -1;
                w(a).hide();
                w(H).stop().fadeOut(u.overlayFadeDuration, j)
            }
            return false
        }
    })(jQuery);
 
    // AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
    if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
        jQuery(function ($) {
            $("a[rel^='lightbox']").slimbox({ /* Put custom options here */ }, null, function (el) {
                return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
            });
        });
    }
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Redimensionar imagenes con javascript

Publicado por Sam (106 intervenciones) el 12/02/2014 08:22:59
Lo he intentado con css poniendolo justo el css del tamaño para las fotos en el html donde hace referencia este código que he posteado aquí.

Pero no va, se ve que tiene mas prioridad este código javascript que el del css y claro estoy en un callejón sin salida.

Alguien podría ayudarme?, gracias de antemano.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar