Jump to content

Search the Community

Showing results for tags 'Cloud Zoom'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. hi to all proceswire!! i have a dificult time to add cloud-zoom http://www.starplugins.com/cloudzoom the code is like this: i change my post i find a easy way here is the code <div class="images"> <ul class="additional-images"> <?php foreach($page->images as $img){ ?> <li> <a href="<?php echo $img->url; ?>" title="Some fancy title" class='cloud-zoom-gallery zoom' rel="useZoom: 'zoom1', smallImage: '<?php echo $img->url; ?>' "> <img src="<?php echo $img->url; ?>" title="Some fancy title" alt="Some fancy title" /> </a> </li> <?php } ?> </ul> <div class="image"> <a href="<?php echo $img->url; ?>" class="cloud-zoom" id="zoom1" rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4"><img src="<?php echo $img->url; ?>" title="Awesome products name" alt="Awesome products name" /> </a> </div> </div> is working fine this way but the problem is that i want to display additional images div under image div <div class="images"> <div class="image"> <a href="<?php echo $img->url; ?>" class="cloud-zoom" id="zoom1" rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4"><img src="<?php echo $img->url; ?>" title="Awesome products name" alt="Awesome products name" /> </a> </div> <ul class="additional-images"> <?php foreach($page->images as $img){ ?> <li> <a href="<?php echo $img->url; ?>" title="Some fancy title" class='cloud-zoom-gallery zoom' rel="useZoom: 'zoom1', smallImage: '<?php echo $img->url; ?>' "> <img src="<?php echo $img->url; ?>" title="Some fancy title" alt="Some fancy title" /> </a> </li> <?php } ?> </ul> </div> like this if i dont click to additional image link it doesnot display the main image. thank you!
×
×
  • Create New...