• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Script bói chỉ số tình yêu

Admin

Well-Known Member
Staff member
Administrator
Đoạn script ứng dụng bói toán vui nhộn nhằm đưa ra chỉ số tình yêu ngẫu nhiên từ tên của 2 người nhập vào.
Demo: http://www.code1k.com/demo/2012/07/script-boi-chi-so-tinh-yeu.html

HTML:
<script type="text/javascript">
//<![CDATA[
function calc() {
first = document.loveform.name1.value.toUpperCase();
firstlength = document.loveform.name1.value.length;
second = document.loveform.name2.value.toUpperCase();
secondlength = document.loveform.name2.value.length;
var LoveCount=0;

for (Count=0; Count < firstlength; Count  ) {

letter1=first.substring(Count,Count 1);

if (letter1=='G') LoveCount =2;
if (letter1=='E') LoveCount =2;
if (letter1=='L') LoveCount =2;
if (letter1=='U') LoveCount =2;
if (letter1=='K') LoveCount =3;
if (letter1=='R') LoveCount =1;
if (letter1=='A') LoveCount =3;
if (letter1=='I') LoveCount =3;
if (letter1=='T') LoveCount =3;
}

for (Count=0; Count < secondlength; Count  ) {
letter2=second.substring(Count,Count 1);
if (letter2=='C') LoveCount =2;
if (letter2=='A') LoveCount =2;
if (letter2=='T') LoveCount =2;
if (letter2=='') LoveCount =2;
if (letter2=='') LoveCount =3;
if (letter2=='') LoveCount =1;
if (letter2=='') LoveCount =3;
}

amount=0;

if (LoveCount> 0) amount= 5-((firstlength secondlength)/2)
if (LoveCount> 2) amount= 10-((firstlength secondlength)/2)
if (LoveCount> 4) amount= 20-((firstlength secondlength)/2)
if (LoveCount> 6) amount= 30-((firstlength secondlength)/2)
if (LoveCount> 8) amount= 40-((firstlength secondlength)/2)

if (LoveCount>10) amount= 50-((firstlength secondlength)/2)

if (LoveCount>12) amount= 60-((firstlength secondlength)/2)
if (LoveCount>14) amount= 70-((firstlength secondlength)/2)
if (LoveCount>16) amount= 80-((firstlength secondlength)/2)
if (LoveCount>18) amount= 90-((firstlength secondlength)/2)
if (LoveCount>20) amount=100-((firstlength secondlength)/2)
if (LoveCount>22) amount=110-((firstlength secondlength)/2)
if (firstlength==0 || secondlength==0) amount= "Biết chết liền ";
if (amount < 0) amount= 0;
if (amount >99) amount=100;

document.loveform.output.value=amount "%";
}
//]]>
</script>

<CENTER>
<TABLE cellSpacing=0 cellPadding=1 width=600 border=0>
<TBODY>
<TR>
<TD vAlign=top align=middle></TD></TR></TBODY></TABLE></CENTER>
<DIV align=center>
<FORM name=loveform>
<P>
<a href="http://code1k.com" target="_blank"><img src="http://2.bp.blogspot.com/-hsV3DF6egsE/UAZlnWT6Y6I/AAAAAAAAI58/rB70PmzVPIU/s1600/heart-code1k.com.png" style="border:0px;"/></a> <INPUT value="Họ tên bạn" name="name1"><br/><br/>
<a href="http://code1k.com" target="_blank"><img src="http://2.bp.blogspot.com/-hsV3DF6egsE/UAZlnWT6Y6I/AAAAAAAAI58/rB70PmzVPIU/s1600/heart-code1k.com.png" style="border:0px;"/></a> <INPUT value="Họ tên người ấy" name="name2"><br/><br/>
<INPUT onclick=calc() type=button value="Bói!" name=calculate> <INPUT size=6 name=output>
</P></FORM></DIV>
<!-- Code1k.com -->
 

Facebook Comments

New posts New threads New resources

Back
Top