Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

1 million link elements in one page?

will it get "laggy" if i fetch 1 million link elements and put it in the DOM.

cause i want a navigation list on top..its kinda like the one Apple's got on their site and you can scroll left or right with your keyboard. the only difference is that the center image will be get larger in size compared to the others.

the link elements will be like:

 <a><img src.../ ></a>

will it be a bad idea to have 1 million link elements in this scrollbar. cause i want all links (added by users) to be shown. what are the other possibilities?

and does anyone know these kind of animation plugins?

thanks!

like image 240
ajsie Avatar asked Feb 07 '10 14:02

ajsie


People also ask

How many links can you have on a page?

The 100 link limit In the earlier days of the Internet, crawlers could only process a certain amount of data on any given page. Because of this the' rule of thumb' of 100 links per page met crawler processing limits so it made sense to suggest it.

How many links should a webpage have?

One link per 500 words is a good rule of thumb Internal link recommendations based on content length: For webpages between 200-500 words: 1 internal link total. For webpages between 500-800 words: 1 or 2 internal links total. For webpages between 800-1500 words: 2 or 3 internal links total.

How do you create links to sections within the same page?

Use the #id selector from another page You can also jump to a specific part of another web page by adding #selector to the page's URL.


2 Answers

Yes, putting 1 million items in a GUI element will:

  1. be slow
  2. break usability guidelines.

Instead try to organize your information into tags or categories, and offer the user:

  • paging
  • sorting
  • filtering
  • favorite lists
  • etc...

Look at how Stack Overflow's question list works, for example.

like image 177
Mark Byers Avatar answered Oct 06 '22 01:10

Mark Byers


only the data transfer will take forever. have you counted that?

like image 31
dusoft Avatar answered Oct 06 '22 02:10

dusoft