Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • sethu 15 posts 35 karma points
    Oct 21, 2011 @ 12:59
    sethu
    0

    How to create a image gallery in my website

    hi

    I am using umbraco 4.7 version can you please tell me how to create a image gallery and vedios

     

    Thanks

    sethu

  • Rich Green 2246 posts 4008 karma points
    Oct 21, 2011 @ 13:56
    Rich Green
    0

    Hi Sethu,

    This is a bit of an open question!

    I would recommened you subscribe to Umbraco TV for at least one month and see how a gallery can be created http://umbraco.com/help-and-support/video-tutorials.aspx?vers=471&author=105

    Rich

  • Fuji Kusaka 2203 posts 4220 karma points
    Oct 24, 2011 @ 06:59
    Fuji Kusaka
    0

    Hi Sethu,

    You could do a simple image gallery by adding a property field  alias e.g "MyGallery" in your document type with a type "Media Picker".

    Just create an xslt and add it to your template and add something like that in your code

    <xsl:param name="currentPage"/>
        <xsl:variable name="
    MyCalleryselect="number($currentPage/Image)"/>


    <xsl:template match="/">
    <!-- start writing XSLT -->  
    <ul>
     <xsl:if test="number($MyCallery)">
            <xsl:for-each select="umbraco.library:GetMedia($MyGallery, 'true')/Image">
    <li>
    <a   href="{umbracoFile}> 
    <xsl:element name="img">
                   <xsl:attribute name="src">
                      <xsl:value-of select="umbracoFile"/>
                  </xsl:attribute>
         </xsl:element>
    </a>
    </li>
       </xsl:for-each>
    </xsl:if>
    </ul>
    </xsl:template>

    Hope this will help.

  • Dan Diplo 1554 posts 6205 karma points MVP 5x c-trib
    Oct 24, 2011 @ 10:40
    Dan Diplo
    0

    I wrote a blog post about creating a simple image gallery that might be of use (it's based on XSLT, but easy enough to do in Razor).

  • Shaishav Karnani from digitallymedia.com 354 posts 1638 karma points
    Jan 24, 2012 @ 02:12
    Shaishav Karnani from digitallymedia.com
    0

    I have posted a video link on Image Gallery. Let me know if this can help.

    Summary

    Recently, we build an Image Gallery for one of our client. It has been a flexible Image Gallery with lot of options to align images left or right, change the image size, limit the number of images per row, show child links, etc.

    We are using Umbraco CMS to built the site and Razor Scripts has been used to built the plugin. 

  • Jeroen Breuer 4908 posts 12265 karma points MVP 4x admin c-trib
    Jan 24, 2012 @ 06:53
    Jeroen Breuer
    1

    I always use DAMP for an image gallery. Here is a quick demo on how to set it up: http://www.screenr.com/gz0s.

    Jeroen

Please Sign in or register to post replies

Write your reply to:

Draft