Webmaster общности: Predpriemach.com | SearchEngines.bg

    phpBB3: Лесен ресайз на картинки

    Автор: SandPrince

    Това е мод за phpBB3 с който можете да преоразмерявате картинки постнати в темите.
    PHPBB версия: phpbb3 -( RC1 -> RC7)
    Време за инсталация: 3 минути

    файлове за редакция: styles/prosilver/template/viewtopic_body.html
    styles/subsilver2/template/viewtopic_body.html

    Преди да инсталирате този мод направете резервни копия на файловете си!!!

    #
    #-----[ ОТВОРЕТЕ ]------------------------------------------
    #
    styles/prosilver/template/viewtopic_body.html
    #
    #-----[ НАМЕРЕТЕ ]------------------------------------------
    #
    <!-- ELSE -->
    <strong>{L_FORUM_RULES}</strong><br />
    {FORUM_RULES}
    <!-- ENDIF -->
    
    <span class="corners-bottom"><span></span></span></div>
    </div>
    <!-- ENDIF -->
    #
    #-----[ СЛЕД ТОВА ДОБАВЕТЕ ]------------------------------------------
    # note : може да промените размера на оразмеряването ( 600px) когато поискате
    
    <script>
    window.onload = resizeimg;
    function resizeimg()
    {
    if (document.getElementsByTagName)
    {
    for (i=0; i<document.getElementsByTagName('img').length; i++)
    {
    im = document.getElementsByTagName('img')[i];
    if (im.width > 600)
    {
    im.style.width = '600px';
    eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + " ','fullscale','width=400,height=400,scrollbars=1,resizable=1'); pop.focus();\")");
    eval("im.onclick = pop" + String(i) + ";");
    if (document.all) im.style.cursor = 'hand';
    if (!document.all) im.style.cursor = 'pointer';
    im.title = 'Click Here To See Image Full Size ';
    }
    }
    }
    }
    
    </script>
    
    #
    #-----[ ОТВОРЕТЕ ]------------------------------------------
    #
    styles/subsilver2/template/viewtopic_body.html
    #
    #-----[ НАМЕРЕТЕ ]------------------------------------------
    #
    <!-- INCLUDE overall_header.html -->
    #
    #-----[ СЛЕД ТОВА ДОБАВЕТЕ ]------------------------------------------
    # note : може да промените размера на оразмеряването ( 600px) когато поискате
    
    <script>
    window.onload = resizeimg;
    function resizeimg()
    {
    if (document.getElementsByTagName)
    {
    for (i=0; i<document.getElementsByTagName('img').length; i++)
    {
    im = document.getElementsByTagName('img')[i];
    if (im.width > 600)
    {
    im.style.width = '600px';
    eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + " ','fullscale','width=400,height=400,scrollbars=1,resizable=1'); pop.focus();\")");
    eval("im.onclick = pop" + String(i) + ";");
    if (document.all) im.style.cursor = 'hand';
    if (!document.all) im.style.cursor = 'pointer';
    im.title = 'Click Here To See Image Full Size ';
    }
    }
    }
    }
    
    </script>
    
    #
    #-----[ ЗАПИШЕТЕ/ЗАТВОРЕТЕ ВСИЧКИ ФАЙЛОВЕ ]------------------------------------------
    #
    

    Демо не мога да дам защото нямам инсталиран phpBB3 форум.

    Т’ва е! 🙂