Method _ javascript skills

Source: Internet
Author: User
This article mainly introduces how JS achieves the current page center paging effect, and involves related techniques related to javascript page elements and styles, for more information about how to use JavaScript to center pages on the current page, see the examples in this article. Share it with you for your reference. The specific implementation method is as follows:

function show_page(cur_pc){  var cp=cur_pc;  //curent page count  var tp=this.p;  //total page count  var sp=this.pc;  //show page count  var bp;      //begin page count  var ep;      //end page count  if(sp%2==0) sp=sp+1;   //this process need an odd number  var dp=Math.floor(sp/2); //each side count to show  var dif=tp-sp;  //check weather it have enough page to make mid-show  var f=cp-dp;   //to check weather it has enough page to make mid-show from the begin  var g=tp-(cp+dp); //to check weather it has enough page to make mid-show from the end  if(sp && dif>=0)  {    if(g>0)    {      if(f>0)      {         bp=f;         ep=cp+dp;       }      else      {         bp=1;         ep=2*dp+1;       }    }    else    {       bp=tp-2*dp;       ep=tp;     }    }  else  {     bp=1;     ep=tp;   }  var buf=[];  for(var i=bp;i<=ep;i++)  {    if(i==cur_pc)    {      buf.push("",i,"");    }    else    {      buf.push("",i,"");    }  }  document.write(buf);}

Shows the running effect:

I hope this article will help you design javascript programs.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.