php – 内部链接到列表中的子项

前端之家收集整理的这篇文章主要介绍了php – 内部链接到列表中的子项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用fullPage.js(jQuery滚动菜单),我有以下情况:

我有一个无序列表 – 其来源是一个sql数据库(使用PHP回显).

每页只有两个项目被回显.

页面顶部,我有一个简单的菜单

我想链接到列表中的第一个和第二个项目.

PHP之前,我有以下内容

我必须设置..但是如何定位列表中的不同孩子?

困惑我 – 如果有人能帮忙,我会非常感激!

最佳答案
使用fullPage.js的正确方法应该是:

1.有一个带有data-menuanchor的菜单

2 .config with js:anchors:[‘theList1′,’theList2′,’theList3′,’theList4’],

3.添加CSS规则来设置样式

  1. $('#fullpage').fullpage({
  2. sectionsColor: ['yellow','orange','#C0C0C0','#ADD8E6'],anchors: ['theList1','theList2','theList3','theList4'],menu: '#menu',slidesNavigation: true
  3. });
  1. @CHARSET "ISO-8859-1";
  2. /* Reset CSS
  3. * --------------------------------------- */
  4. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
  5. padding: 0;
  6. margin: 0;
  7. }
  8. a{
  9. text-decoration:none;
  10. }
  11. table {
  12. border-spacing: 0;
  13. }
  14. fieldset,img {
  15. border: 0;
  16. }
  17. address,caption,cite,code,dfn,em,strong,var {
  18. font-weight: normal;
  19. font-style: normal;
  20. }
  21. strong{
  22. font-weight: bold;
  23. }
  24. ol,ul {
  25. list-style: none;
  26. margin:0;
  27. padding:0;
  28. }
  29. caption,th {
  30. text-align: left;
  31. }
  32. h1,h6 {
  33. font-weight: normal;
  34. font-size: 100%;
  35. margin:0;
  36. padding:0;
  37. color:#444;
  38. }
  39. q:before,q:after {
  40. content:'';
  41. }
  42. abbr,acronym { border: 0;
  43. }
  44. /* Custom CSS
  45. * --------------------------------------- */
  46. body{
  47. font-family: arial,helvetica;
  48. color: #333;
  49. color: rgba(0,0.5);
  50. }
  51. .wrap{
  52. margin-left: auto;
  53. margin-right: auto;
  54. width: 960px;
  55. position: relative;
  56. }
  57. h1{
  58. font-size: 6em;
  59. }
  60. p{
  61. font-size: 2em;
  62. }
  63. .intro p{
  64. width: 50%;
  65. margin: 0 auto;
  66. font-size: 1.5em;
  67. }
  68. .section{
  69. text-align:center;
  70. }
  71. #menu li {
  72. display:inline-block;
  73. margin: 10px;
  74. color: #000;
  75. background:#fff;
  76. background: rgba(255,255,0.5);
  77. -webkit-border-radius: 10px;
  78. border-radius: 10px;
  79. }
  80. #menu li.active{
  81. background:#666;
  82. background: rgba(0,0.5);
  83. color: #fff;
  84. }
  85. #menu li a{
  86. text-decoration:none;
  87. color: #000;
  88. }
  89. #menu li.active a:hover{
  90. color: #000;
  91. }
  92. #menu li:hover{
  93. background: rgba(255,0.8);
  94. }
  95. #menu li a,#menu li.active a{
  96. padding: 9px 18px;
  97. display:block;
  98. }
  99. #menu li.active a{
  100. color: #fff;
  101. }
  102. #menu{
  103. position:fixed;
  104. top:0;
  105. left:0;
  106. height: 40px;
  107. z-index: 70;
  108. width: 100%;
  109. padding: 0;
  110. margin:0;
  111. }
  112. .twitter-share-button{
  113. position: fixed;
  114. z-index: 99;
  115. right: 149px;
  116. top: 9px;
  117. }
  118. #download{
  119. margin: 10px 0 0 0;
  120. padding: 15px 10px;
  121. color: #fff;
  122. text-shadow: 0 -1px 0 rgba(0,0.25);
  123. background-color: #49afcd;
  124. background-image: -moz-linear-gradient(top,#5bc0de,#2f96b4);
  125. background-image: -ms-linear-gradient(top,#2f96b4);
  126. background-image: -webkit-gradient(linear,0 0,0 100%,from( #5bc0de),to( #2f96b4));
  127. background-image: -webkit-linear-gradient(top,#2f96b4);
  128. background-image: -o-linear-gradient(top,#2f96b4);
  129. background-image: linear-gradient(top,#2f96b4);
  130. background-repeat: repeat-x;
  131. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de',endColorstr='#2f96b4',GradientType=0);
  132. border-color: #2f96b4 #2f96b4 #1f6377;
  133. border-color: rgba(0,.1) rgba(0,.25);
  134. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  135. -webkit-border-radius: 6px;
  136. -moz-border-radius: 6px;
  137. border-radius: 6px;
  138. vertical-align: middle;
  139. cursor: pointer;
  140. display: inline-block;
  141. -webkit-Box-shadow: inset 0 1px 0 rgba(255,0.2),0 1px 2px rgba(0,0.05);
  142. -moz-Box-shadow: inset 0 1px 0 rgba(255,0.05);
  143. Box-shadow: inset 0 1px 0 rgba(255,0.05);
  144. }
  145. #download a{
  146. text-decoration:none;
  147. color:#fff;
  148. }
  149. #download:hover{
  150. text-shadow: 0 -1px 0 rgba(0,.25);
  151. background-color: #2F96B4;
  152. background-position: 0 -15px;
  153. -webkit-transition: background-position .1s linear;
  154. -moz-transition: background-position .1s linear;
  155. -ms-transition: background-position .1s linear;
  156. -o-transition: background-position .1s linear;
  157. transition: background-position .1s linear;
  158. }
  159. #infoMenu{
  160. height: 20px;
  161. color: #f2f2f2;
  162. position:fixed;
  163. z-index:70;
  164. bottom:0;
  165. width:100%;
  166. text-align:right;
  167. font-size:0.9em;
  168. padding:8px 0 8px 0;
  169. }
  170. #infoMenu ul{
  171. padding: 0 40px;
  172. }
  173. #infoMenu li a{
  174. display: block;
  175. margin: 0 22px 0 0;
  176. color: #333;
  177. }
  178. #infoMenu li a:hover{
  179. text-decoration:underline;
  180. }
  181. #infoMenu li{
  182. display:inline-block;
  183. position:relative;
  184. }
  185. #examplesList{
  186. display:none;
  187. background: #282828;
  188. -webkit-border-radius: 6px;
  189. -moz-border-radius: 6px;
  190. border-radius: 6px;
  191. padding: 20px;
  192. float: left;
  193. position: absolute;
  194. bottom: 29px;
  195. right: 0;
  196. width:638px;
  197. text-align:left;
  198. }
  199. #examplesList ul{
  200. padding:0;
  201. }
  202. #examplesList ul li{
  203. display:block;
  204. margin: 5px 0;
  205. }
  206. #examplesList ul li a{
  207. color: #BDBDBD;
  208. margin:0;
  209. }
  210. #examplesList ul li a:hover{
  211. color: #f2f2f2;
  212. }
  213. #examplesList .column{
  214. float: left;
  215. margin: 0 20px 0 0;
  216. }
  217. #examplesList h3{
  218. color: #f2f2f2;
  219. font-size: 1.2em;
  220. margin: 0 0 15px 0;
  221. border-bottom: 1px solid rgba(0,0.4);
  222. -webkit-Box-shadow: 0 1px 0 rgba(255,0.1);
  223. -moz-Box-shadow: 0 1px 0 rgba(255,0.1);
  224. Box-shadow: 0 1px 0 rgba(255,0.1);
  225. padding: 0 0 5px 0;
  226. }
  227. /* Demos Menu
  228. * --------------------------------------- */
  229. #demosMenu{
  230. position:fixed;
  231. bottom: 10px;
  232. right:10px;
  233. z-index: 999;
  234. }

猜你在找的HTML相关文章