»
Tiếng AnhTiếng PhápTiếng Việt

In - Hệ thống đánh giá bằng hình ảnh - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Ứng dụng » Hệ thống đánh giá bằng hình ảnh
URL: https://www.javascriptbank.com/rating-star-script-index.html

Hệ thống đánh giá bằng hình ảnh © JavaScriptBank.comBạn cần một hệ thống cho phép khách truy cập đánh giá một đối tượng (bài viết, ảnh, ý kiến,...) trên website của mình? Vậy thì hãy sử dụng hiệu ứng này, hiệu ứng này sử dụng các hình ảnh của ngôi sao để dùng cho việc đánh giá. Điểm từ 0.5 đến 5.0.Lưu ý: hiệu ứng chỉ hoạt động trên IE.

Phiên bản đầy đủ: jsB@nk » Ứng dụng » Hệ thống đánh giá bằng hình ảnh
URL: https://www.javascriptbank.com/rating-star-script-index.html



JavaScript
<SCRIPT language=JavaScript>string="<a href='http://javascriptbank.com/' style='text-decoration: none;'>JavaScriptBank.com</a>"   // string to elastic textpausetime=100; // time to elastic effect. Decrease to slow// do not modify below this linevar sizes = new Array("-8px","-4px","-2px","-1px","0px", "1px", "2px", "4px", "8px", "16px", "32px");sizes.pos = 0; function rubberBand() {  var el = document.all.elastic;  if (el.direction==null)  {el.direction = 1;}  else if ((sizes.pos > sizes.length-2) || (sizes.pos==0)) {el.direction *= -1;}  el.style.letterSpacing = sizes[sizes.pos += el.direction];  setTimeout('rubberBand()',pausetime);}rubberBand();</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<P id=elastic style="FONT-SIZE: 25px; POSITION: relative; TOP: 20px" align=center><!-- put desired text below. Replase my text.  HTML tag allowed--><A href="http://javascriptbank.com/" style="text-decoration: none;">JavaScriptBank.com</A><!-- put desired text above. Replase my text. HTML tag allowed --></P><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->