sliding panels or scrolling content

Permalink
How about it guys pretty simple functionality really especially scrolling content in a frame. Is it already here? Sliding panels would be even better. Read a bit in a nice tidy block press more and read the next bit.

Cmon lads.

Nige

nige
 
Mikas replied on at Permalink Reply
Mikas
Maybe this thread is helpful to you too.

http://www.concrete5.org/community/forums/usage/scrolling-text-cont...

And there is a block on the marketplace for the "more" option.

Best
Mikas
TheRealSean replied on at Permalink Reply 1 Attachment
TheRealSean
This is not exactly scrolling or sliding content, but I did adjust it using a slideToggle to display the extra content.

This was just a basic display text hit more display the next bit

The bit I added to slide instead of just show was

/* Javascript */
toggleFullFaqEntry = function(item) {
   var exce = $('#faqEntry' + item + ' .excerpt');
   var full = $('#faqEntry' + item + ' .full');
   if (full.css('display') == 'none') {
      exce.stop(true, true).slideToggle(300,function(){
         full.stop(true, true).slideToggle(300);
      });
   } else {
      //desc.hide();
      full.stop(true, true).slideToggle(500,function(){
         exce.stop(true, true).slideToggle(300);      
      });
   }
}


I know its not exactly what you are after, but if you use animate instead of slideToggle, you could change the position of the text.