Is there page control in HTML/CSS which looks and works like UIPageControl in iOS?
I am planning to have a page control in m开发者_如何转开发y html Application. Is there a page control in HTML/CSS which looks and works like UIPageControl in iOS?
Yes there is, it is called the nav
element.
<nav>
<ul>
<li><a href="index.html">.</a></li>
<li><a href="/about/">.</a></li>
<li><a href="/blog/">.</a></li>
</ul>
</nav>
I'll leave the details up to you.
精彩评论