Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
HTML
<div class="gallery_div">
            <div class="GalleryHeader">
            <div class="GalleryHeaderLeft">
            &lt;input type="image" name="ctl00$ContentPlaceHolder1$lbtnPrev" id="ctl00_ContentPlaceHolder1_lbtnPrev" src="../Images/Previous-icon.png" style="border-width:0px;" />
            </div>
      <div class="GalleryHeaderText">
       <span id="ctl00_ContentPlaceHolder1_lblDesc"><b>post title</b></span><br />
    <span id="ctl00_ContentPlaceHolder1_lblcount">3 of 3</span><br />
       </div>
       <div class="GalleryHeaderRight">
            &lt;input type="image" name="ctl00$ContentPlaceHolder1$lbtnNext" id="ctl00_ContentPlaceHolder1_lbtnNext" src="../Images/Next-icon.png" style="border-width:0px;" />
          </div>
    </div>
    <div class="BigImage">
    <img id="ctl00_ContentPlaceHolder1_Image1" src="#" alt="post title" style="width:100%;border-width:0px;" />
    </div>
        <div style='text-align:left'>
        <div class="GalleryHeader"> 
        <div class="GalleryFooterLeft">
        &lt;input type="image" name="ctl00$ContentPlaceHolder1$lbtnPrev0" id="ctl00_ContentPlaceHolder1_lbtnPrev0" src="../Images/Previous-icon.png" style="border-width:0px;" />
                </div>
  
  
        

   <div class="GalleryFooterRight">
            &lt;input type="image" name="ctl00$ContentPlaceHolder1$lbtnNext0" id="ctl00_ContentPlaceHolder1_lbtnNext0" src="../Images/Next-icon.png" style="border-width:0px;float:right;" />
        </div>
            </div>
   <span id="ctl00_ContentPlaceHolder1_lblKeytags">post title</span>
   <br /></div></div>


What I have tried:

its about to place sliding images with navigable next and previous buttons in my blog posts
Posted
Updated 9-Jun-16 20:27pm
Comments
Sergey Alexandrovich Kryukov 9-Jun-16 20:53pm    
Sorry, I don't think it make any sense. The notion of "explanation" is way too vague. This is not a constructive approach to learning anything. You did not give us any idea on your concerns, we also don't know your level of understanding related things. Detailed explanations may take enormous time. OriginalGriff has a habit of demonstrating that a fairly detailed explanation of one line of code takes some half of this page... :-)
—SA
koolprasad2003 10-Jun-16 1:41am    
Couple of DIV's with images only. nothing more than that. Where is the definition for CSS classes used in DIV

1 solution

As koolprasad2003 says:
"Couple of DIV's with images only. nothing more than that. Where is the definition for CSS classes used in DIV"

More explanation is not going to be forthcoming: there isn't anything to explain other than "raw" HTML - and that would be a line-by-line explanation.
Do you have any idea how much work explaining code line by line is?
Every single line needs a paragraph of explanation! For example:
int next = r.Next();

Create a new variable called "next" which can hold a integer value. From the previously declared Random instance "r", call the "Next" method to get a new random number, and assign it to the "next" variable.

Can you imagine how long it would take us to explain even a very short code fragment like your example, line by line?

No. It is not going to happen. If you have a specific problem, then ask a question about it. But think first - would you want to sit down for 45 minutes and type up a line-by-line description for no good reason?

And almost certainly, if you look carefully at the rest of the page, it's the accompanying javascript that does the work. And before you ask: no, we won't explain that to you line-by-line either!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900