Advertisement
654321aZ

Love

Oct 8th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 11.91 KB | None | 0 0
  1.  
  2. <!-- BEGIN: main -->
  3.  
  4. <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Bảo vừa gửi tặng Như một tấm thiệp yêu thương trên hệ thống page Phú Yên Love</title>
  6. <link rel="shortcut icon" href="favicon.ico" type="rajnlove">
  7. <link rel="icon" href="{link_web}/favicon.ico" type="rajnlove">
  8. <meta name="description" content="Trang này được  Bảo gửi tặng  Như trên hệ thống tạo thiệp tặng bạn ">
  9. <meta name="keywords" content="{keywords}">
  10.  
  11. <link href='http://fonts.googleapis.com/css?family=Click Chọn Phông Chữ' rel='stylesheet' type='text/css'>
  12. <link rel="stylesheet" href="/aiue/stylesheet.css" type="text/css" charset="utf-8" />
  13. <link rel="stylesheet" href="/aiue/newtheme.css" type="text/css" charset="utf-8" />
  14. <script type="text/javascript">
  15.  
  16.   var _udn = "{domain}";
  17.   var _gaq = _gaq || [];
  18.   _gaq.push(['_setAccount', 'UA-38552329-1']);
  19.   _gaq.push(['_setDomainName', '{domain}']);
  20.   //_gaq.push(['_setAllowLinker', true]);
  21.   _gaq.push(['_trackPageview']);
  22.   (function() {
  23.     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  24.     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  25.     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  26.   })();
  27. </script>
  28.  
  29.  
  30.  
  31.     <script type="text/javascript">
  32.         var snowmax=14
  33.         var snowcolor=new Array("#AAAACC","#DDDDFF","#CCCCDD","#F3F3F3","#F0FFFF")
  34.         var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS")
  35.         var snowletter="Bảo Love Như"
  36.         var sinkspeed=0.6
  37.         var snowmaxsize=14
  38.         var snowminsize=8
  39.         var snowingzone=1
  40.         var snow=new Array()
  41.         var marginbottom
  42.         var marginright
  43.         var timer
  44.         var i_snow=0
  45.         var x_mv=new Array();
  46.         var crds=new Array();
  47.         var lftrght=new Array();
  48.         var browserinfos=navigator.userAgent
  49.         var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
  50.         var ns6=document.getElementById&&!document.all
  51.         var opera=browserinfos.match(/Opera/)  
  52.         var browserok=ie5||ns6||opera
  53.         function randommaker(range) {        
  54.             rand=Math.floor(range*Math.random())
  55.             return rand
  56.             }
  57.  
  58.         function initsnow() {
  59.                 if (ie5 || opera) {
  60.                     marginbottom = document.body.clientHeight
  61.                     marginright = document.body.clientWidth
  62.                 }
  63.                 else if (ns6) {
  64.                     marginbottom = window.innerHeight
  65.                     marginright = window.innerWidth
  66.                 }
  67.             var snowsizerange=snowmaxsize-snowminsize
  68.             for (i=0;i<=snowmax;i++) {
  69.                 crds[i] = 0;                      
  70.                 lftrght[i] = Math.random()*15;        
  71.                 x_mv[i] = 0.03 + Math.random()/10;
  72.                 snow[i]=document.getElementById("s"+i)
  73.                 snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
  74.                 snow[i].size=randommaker(snowsizerange)+snowminsize
  75.                 snow[i].style.fontSize=snow[i].size
  76.                 snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
  77.                 snow[i].sink=sinkspeed*snow[i].size/5
  78.                 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  79.                 if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  80.                 if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  81.                 if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  82.                 snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
  83.                 snow[i].style.left=snow[i].posx
  84.                 snow[i].style.top=snow[i].posy
  85.             }
  86.             movesnow()
  87.         }
  88.  
  89.         function movesnow() {
  90.             for (i=0;i<=snowmax;i++) {
  91.                 crds[i] += x_mv[i];
  92.                 snow[i].posy+=snow[i].sink
  93.                 snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]);
  94.                 snow[i].style.top=snow[i].posy
  95.                 if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
  96.                     if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  97.                     if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  98.                     if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  99.                     if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  100.                 snow[i].posy=0
  101.                 }
  102.             }
  103.             var timer=setTimeout("movesnow()",50)
  104.         }
  105.  
  106.         for (i=0;i<=snowmax;i++) {
  107.    document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
  108.         }
  109.         if (browserok) {
  110.         window.onload=initsnow
  111.         }
  112.     </script>
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.     <style type="text/css">
  124.                     body{
  125.                 font-family: 'Click Chọn Phông Chữ';
  126.                 cursor: url("/tangban/point/");
  127.  
  128.                             }
  129.         </style>
  130. <script type="text/javascript" src="/aiue/jquery.min.js"></script>
  131. <script src="/aiue/jquery.easing.1.3.js"></script>
  132.  
  133. <style type="text/css">
  134. *{margin: 0;padding: 0;}
  135. body{
  136.     background:#DD8FA5 url(/aiue/bg.jpg) no-repeat top center;
  137.     overflow-x: hidden;
  138.     overflow-y: auto;
  139.     color:#fcf;
  140.  
  141. }
  142. ul#scroll{
  143.     width: 900%;  
  144. margin-top: 240px; 
  145. }
  146. ul#scroll li{
  147.     height: 400px;
  148.     float: left;
  149.     list-style: none;
  150.     position: relative;
  151. }
  152. #dapxe{
  153.     margin: 0 auto;
  154.     width: 500px;
  155. }
  156. #enter2{
  157.     width: 70px;height: 20px;
  158.  
  159.     margin-top: -300px;margin-left: 400px;
  160.     cursor: pointer;
  161. }
  162.  
  163. div.item{
  164.     width: 940px;
  165.     height: 400px;
  166.     margin: 0 auto;
  167.     background: no-repeat 0px 0;
  168. }
  169. div.item h1{
  170.     text-transform: uppercase;
  171.     color: #4a295e;
  172.     margin-left:200px ;
  173.     font-size: 41px;
  174. }
  175. div.item>div{
  176. margin-left: 200px;
  177. height: 329px;
  178. border: 1px solid rgb(255, 176, 198);
  179. background-color: rgba(255, 174, 197, 0.31);
  180. padding: 10px;
  181. text-align: justify;
  182. border-radius: 5px;
  183. }
  184. div.item>div p{
  185.     line-height:24px ;
  186. }
  187. img[alt='*']{
  188.     display: none;
  189. }
  190. #copy{
  191.     text-align: center;
  192.     color: #6f6f6f;
  193.     font-size: 12px;
  194.     clear: both;
  195. }
  196. #copy:hover{
  197.     cursor: pointer;
  198.     color:#8080C0;
  199. }
  200.  
  201.  
  202.                            
  203. </style>
  204. <script type="text/javascript">
  205. $(function(){
  206.     function fixOverflow(){
  207.         $('body,html').animate({scrollTop:0},200);
  208.         if($(window).height()>=644){
  209.             $('body').css('overflow-y','hidden');
  210.         }else{
  211.             $('body').css('overflow-y','auto');
  212.         }
  213.     }
  214.     function resizeW(){
  215.         var $wid=$(window).width();
  216.         $('ul#scroll li').width($wid);
  217.     }
  218.     fixOverflow();resizeW();$(window).resize(function(){resizeW();fixOverflow()});
  219.     $('#enter2').click(function(){
  220.         $(this).fadeOut(function(){
  221.             $('#scroll').stop().animate({marginLeft:'-'+$(window).width()+'px'},5000,'easeInOutQuart');//5 giây đạp xe
  222.             $('#menu').animate({opacity:1},5000,function(){
  223.                 $('#copy embed').remove();
  224.             });
  225.         });
  226.     });
  227.     $('#menu li a').click(function(){
  228.         var $hre=$(this).attr('href');
  229.         var $index=$($hre).index();
  230.         $('#scroll').stop().animate({marginLeft:'-'+$(window).width()*$index+'px'},3000,'easeOutQuint');
  231.         $('#menu li a').removeClass('active');
  232.         $(this).addClass('active');
  233.         if($hre=='#vk'){
  234.             $('img[alt="*"]').fadeIn();
  235.         }else $('img[alt="*"]').hide();
  236.         return false;
  237.     });
  238.     $('img[alt="*"]').parent().css('z-index','9999');
  239.    
  240. })
  241. </script>
  242. </head>
  243. <body bgcolor="Click Chọn Màu nền" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background={bgnen}>
  244. <table width="100%"><tbody><tr><td width="7%"><a href="/tangban"><img border="0" src="/tangban/back.gif" title="Trở về trang chủ" width="52" height="45"></a></td><td align=center>
  245. </td></tr></table>
  246.  
  247.  
  248.  
  249.  
  250.  
  251.     <script language="JavaScript">
  252.         var flag = 1;
  253.         function t() {
  254.         if(flag == 1) {
  255.         N.style.top = "150px";
  256.         N.style.left = "200px";
  257.         }
  258.         if(flag == 2) {
  259.         N.style.top = "150px";
  260.         N.style.left = "400px";
  261.         }
  262.         flag = flag + 1;
  263.         if(flag == 3) {
  264.         flag = 1;
  265.         }
  266.         }
  267.         function al() {
  268.         alert("Cảm ơn Như!!!");
  269.         alert("Bảo cũng yêu Như nhiều lắm!!!");
  270.         alert("Giờ thì Bảo chở Như đi đến khu vườn tình yêu nhé. Nơi đó sẽ có lời nhắn của Bảo dành cho Như !!!");
  271.         alert("Đi nào....  !!!!");
  272.         }
  273.     </script>
  274.  
  275.  
  276.  
  277.  
  278.  
  279.    
  280.  
  281.  
  282.  
  283.  
  284. <ul id="scroll">
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.     <li id="enter">
  294.         <div style="margin-top:-110px;" id="dapxe"><div style="z-index: -1;position: relative;"><embed width="500" height="500"  wmode="transparent" menu="false" quality="high" type="application/x-shockwave-flash" src="/tangban/news_themes/vietvui-22/dapxe.swf" pluginspage="http://www.macromedia.com/go/getflashplayer"/></div>
  295. <div style="width:300px" id="enter2">
  296. <br>
  297.     <form>
  298.         <h2 align="center">
  299.         <span style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:white; text-shadow: 0pt 0pt 0.3em LightGreen, 0pt 2pt 0.3em LightGreen;">
  300.         <b>Như có yêu Bảo không?</b>
  301.         </span>
  302.         </h2>
  303.        
  304.         <font size="4" face="timenewroman" style="background: url(&quot;http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif&quot;) repeat scroll 0% 0% transparent; color:#fff; text-shadow: 0pt 0pt 0.9em violet, 0pt 2pt 0.9em violet;">
  305.                 </font>
  306.     <br>
  307.         <div id="N" style="height: 30px;font-weight: bold;margin-top:120px;position: absolute; top: 150px; width: 100px;"><input style=" cursor: pointer;padding:10px;background:blue;border-radius:10px;color:white;" onmouseover="t()" type="button" value="  Không  "></div>
  308.        
  309.         <div id="Y" style="HEIGHT: 30px;font-weight: bold;margin-right:-30px;margin-top:120px;right:300px; POSITION: absolute; TOP: 150px; WIDTH: 100px"><input style=" cursor: pointer;padding:10px;background:blue;border-radius:10px;color:white;" onclick="al()" type="button" value=" Có "></div></form>
  310.  
  311. <b><font color=blue>Nếu có thì bấm Có để xem điều bất ngờ nhé ^^</font>
  312. </b>
  313. </div></div>
  314.     </li>
  315.    
  316.     <li style="margin-top:-30px;margin-left:-80px;" id="mom">
  317.         <div class="item" style="background-image: url(/aiue/image/1.png);background-position: 66px 0;">
  318.             <h1><font size="4" color="Click Chọn Màu chữ"><marquee onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="3" direction="left" width="80%">anh đã yêu em lắm r :((( phải làm sao đây</marquee></font></h1>
  319.             <div>
  320.             <table width="100%">
  321.  
  322. <tr><td rowspan="2"><marquee onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="1" direction="up" width="100%" height="240">
  323. <center><font style="margin-top:-20px" color="Click Chọn Màu chữ"><font color="">Bảo Yêu Như</font></font></center></marquee></td>
  324. <td><img src="../aiue//image/2.png" style="float: right;"></td></tr>
  325. <tr><td><object width="1" height="1"><param name="movie" value="http://www.nhaccuatui.com/m/9Fd4zVvPMIbf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="flashvars" value="&autostart=true" /><embed src="http://www.nhaccuatui.com/m/MMslOg3o7Ilt" quality="high" wmode="transparent" type="application/x-shockwave-flash" flashvars="&autostart=true" width="1" height="1"></embed>
  326. </object></td></tr>
  327. <tr><td colspan="3"><marquee onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="3" direction="left"><font color="Click Chọn Màu chữ">Bảo</font><font color="#FF00FF"> gửi tặng </font> <font color="Click Chọn Màu chữ">Như:</font>
  328. <font color="#CC00CC">Anh iu em từ lúc vừa !! thấy em hát trên cctalk</font> </marquee></td></tr>
  329. </table>
  330.  
  331. </table>
  332.  
  333. </div>
  334.  
  335.         </div>
  336.     </li>
  337.  
  338. </ul>
  339. <p id="copy" onClick="window.open('http://haku9x.net','')">© 2014 - 2015
  340. </p>
  341. <script>
  342. var txt="Trang này được  Bảo gửi tặng  Như trên hệ thống tạo thiệp tặng bạn";
  343. var espera=100;
  344. var refresco=null;
  345. function rotulo_title() {
  346. document.title=txt;
  347. txt=txt.substring(1,txt.length)+txt.charAt(0);
  348. refresco=setTimeout("rotulo_title()",espera);
  349. }
  350. rotulo_title();
  351. </script>
  352.  
  353.  
  354. </body>
  355. </html><!-- END: main -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement