Admin
Trang Chủ đơn giản Forum đang dùng
on 06/05/2012Admin
loading...
Demo:
[You must be registered and logged in to see this link.]
- Code:
<html style="overflow-y: hidden; ">
<title>Vietnamese Forumotion</title>
<link href="http://nl3.upanh.com/b1.s29.d4/497a8723e0a7529a7ed7f6e8d2e56786_44355573.taixuong.jpg" rel="shortcut icon" />
<meta content="Sales" name="aesop" />
<meta content="index, follow" name="ROBOTS" />
<meta content="General" name="RATING" />
<meta content="1" name="REVISIT-AFTER" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<style type="text/css">
<!--
a:link {
text-decoration: none;
color: #FFFFFF;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
}
a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color:#FFFFFF;
}
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
font-size: 11px;
}
body {
margin-top: 0px;
margin-bottom: 0px;
background-image: url();
margin-left: 0px;
margin-right: 0px;
background-color: #000000;
}
.buttoncss{
background: url('http://www.vietnamstart.com/image_index/index2010_logo_1a.png') no-repeat;
width: 254px;
height: 254px;
-moz-transition: all 0.8s ease-in-out;
-webkit-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
}
.buttoncss:hover{
background: url('http://www.vietnamstart.com/image_index/index2010_logo_2a.png') no-repeat;
width: 254px;
height: 254px;
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.style9 {color: #993300}
img { behavior: url("http://www.vietnamstart.com/iepngfix/iepngfix.htc") }
--></style>
<script>
// IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support
// (c) 2008-2009 Angus Turnbull http://www.twinhelix.com
// This is licensed under the GNU LGPL, version 2.1 or later.
// For details, see: http://creativecommons.org/licenses/LGPL/2.1/
var IEPNGFix = window.IEPNGFix || {};
IEPNGFix.tileBG = function(elm, pngSrc, ready) {
// Params: A reference to a DOM element, the PNG src file pathname, and a
// hidden "ready-to-run" passed when called back after image preloading.
var data = this.data[elm.uniqueID],
elmW = Math.max(elm.clientWidth, elm.scrollWidth),
elmH = Math.max(elm.clientHeight, elm.scrollHeight),
bgX = elm.currentStyle.backgroundPositionX,
bgY = elm.currentStyle.backgroundPositionY,
bgR = elm.currentStyle.backgroundRepeat;
// Cache of DIVs created per element, and image preloader/data.
if (!data.tiles) {
data.tiles = {
elm: elm,
src: '',
cache: [],
img: new Image(),
old: {}
};
}
var tiles = data.tiles,
pngW = tiles.img.width,
pngH = tiles.img.height;
if (pngSrc) {
if (!ready && pngSrc != tiles.src) {
// New image? Preload it with a callback to detect dimensions.
tiles.img.onload = function() {
this.onload = null;
IEPNGFix.tileBG(elm, pngSrc, 1);
};
return tiles.img.src = pngSrc;
}
} else {
// No image?
if (tiles.src) ready = 1;
pngW = pngH = 0;
}
tiles.src = pngSrc;
if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&
bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {
return;
}
// Convert English and percentage positions to pixels.
var pos = {
top: '0%',
left: '0%',
center: '50%',
bottom: '100%',
right: '100%'
},
x,
y,
pc;
x = pos[bgX] || bgX;
y = pos[bgY] || bgY;
if (pc = x.match(/(\d+)%/)) {
x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));
}
if (pc = y.match(/(\d+)%/)) {
y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));
}
x = parseInt(x);
y = parseInt(y);
// Handle backgroundRepeat.
var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],
repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];
if (repeatX) {
x %= pngW;
if (x > 0) x -= pngW;
}
if (repeatY) {
y %= pngH;
if (y > 0) y -= pngH;
}
// Go!
this.hook.enabled = 0;
if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {
elm.style.position = 'relative';
}
var count = 0,
xPos,
maxX = repeatX ? elmW : x + 0.1,
yPos,
maxY = repeatY ? elmH : y + 0.1,
d,
s,
isNew;
if (pngW && pngH) {
for (xPos = x; xPos < maxX; xPos += pngW) {
for (yPos = y; yPos < maxY; yPos += pngH) {
isNew = 0;
if (!tiles.cache[count]) {
tiles.cache[count] = document.createElement('div');
isNew = 1;
}
var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),
clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);
d = tiles.cache[count];
s = d.style;
s.behavior = 'none';
s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';
s.top = yPos + 'px';
s.width = clipR + 'px';
s.height = clipB + 'px';
s.clip = 'rect(' +
(yPos < 0 ? 0 - yPos : 0) + 'px,' +
clipR + 'px,' +
clipB + 'px,' +
(xPos < 0 ? 0 - xPos : 0) + 'px)';
s.display = 'block';
if (isNew) {
s.position = 'absolute';
s.zIndex = -999;
if (elm.firstChild) {
elm.insertBefore(d, elm.firstChild);
} else {
elm.appendChild(d);
}
}
this.fix(d, pngSrc, 0);
count++;
}
}
}
while (count < tiles.cache.length) {
this.fix(tiles.cache[count], '', 0);
tiles.cache[count++].style.display = 'none';
}
this.hook.enabled = 1;
// Cache so updates are infrequent.
tiles.old = {
w: elmW,
h: elmH,
x: bgX,
y: bgY,
r: bgR
};
};
IEPNGFix.update = function() {
// Update all PNG backgrounds.
for (var i in IEPNGFix.data) {
var t = IEPNGFix.data[i].tiles;
if (t && t.elm && t.src) {
IEPNGFix.tileBG(t.elm, t.src);
}
}
};
IEPNGFix.update.timer = 0;
if (window.attachEvent && !window.opera) {
window.attachEvent('onresize', function() {
clearTimeout(IEPNGFix.update.timer);
IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);
});
}
</script><script language="JavaScript" type="text/JavaScript">
<!--
function MM_preloadImages() { [You must be registered and logged in to see this link.]
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { [You must be registered and logged in to see this link.]
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { [You must be registered and logged in to see this link.]
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { [You must be registered and logged in to see this link.]
var</dj=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script><SCRIPT language=javascript src="ems_files/function.js"></SCRIPT>
<link href="http://www.vietnamstart.com/ems_files/MasterCss.css" rel="stylesheet" type="text/css" />
<meta content="MSHTML 6.00.2900.2180" name="GENERATOR" />
<style type="text/css">
<!--
.style11 {color: #CCCCCC}
.style14 {color: #999999; }
.style15 {color: #666666; }
.style6 {font-size: 12px}
.style16 {color: #333333; }
--></style><div align="center">
<table align="center" background="http://www.vietnamstart.com/image_index/index2010_bg.jpg" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tbody>
<tr align="center" valign="top">
<td valign="top">
<table align="center" border="0" cellpadding="0" cellspacing="0" height="450" width="948">
<tbody>
<tr>
<td align="right" scope="col" valign="middle" width="220">
<p>
<img border="0" src="http://nl8.upanh.com/b5.s26.d1/05967ceb38a9f32ce49d17481f4c119d_44371218.cooltext692653097.png" /></a></p>
<p>
</p>
</td>
<td align="center" height="125" scope="col" valign="middle" width="508">
</td>
<td align="left" scope="col" valign="middle" width="220">
<p>
<img border="0" src="http://nl1.upanh.com/b1.s28.d3/99435fc8a69b994a2b6a61a4d903c7aa_44371221.cooltext692653158.png" /></a></p>
<p>
</p>
</td>
</tr>
<tr>
<td align="right" scope="col" valign="top" width="220">
</td>
<td align="center" height="325" scope="col" valign="middle">
<a href="/forum"><div class="buttoncss">
</div></a>
</td>
<td align="left" scope="col" valign="top" width="220">
</td>
</tr>
<tr>
<td align="right" scope="col" valign="top" width="220">
</td>
<td align="center" scope="col" valign="top">
<span class="style6"><b>Click để vào Hotro.4forum.biz </b></span></td>
<td align="left" scope="col" valign="top" width="220">
</td>
</tr>
</tbody>
</table>
<p align="center" class="style11">
</p>
<p align="center" class="style16">
<br />
<span class="style15">Diễn Đàn Sẽ Lớn Mạnh Nếu Chúng Tôi Nhận Được Sự Ủng Hộ Từ Các Bạn !</span></p>
<p align="center" class="style14">
<br>
<br>
<br>
<br>
<br>
<img border="0" src="http://nl8.upanh.com/b2.s27.d1/6601d0e64ab39f7b642940ee9aa59458_44370658.cooltext692648332.png" /></a></p>
<p align="center" class="style9">
</p>
<p align="center" class="style9">
</p>
<p align="center" class="style9">
</p>
<p align="center" class="style9">
</p>
<p align="center" class="style9">
</p>
<p align="center" class="style9">
</p>
</td>
</tr>
</tbody>
</table>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9989982-1");
pageTracker._trackPageview();
} catch(err) {}</script></div>
<embed autostart="true" hidden="true" loop="true" src="http://dc364.4shared.com/img/835026962/5ba4dbd5/dlink__2Fdownload_2FNVLMmu92_3Ftsid_3D00000000-000000-00000000/preview.mp3"></embed>
<center><div style="border-top:1px solid #666666; height:20px; padding:1px; background: #333333 none repeat scroll 0% 0%; position: fixed; bottom: 0pt; right: 0pt; left: 0pt; width: 100%; z-index: 100; text-align: center; font-size:12pt;">
<center>
<font size="1" style="color:gray;font-weight:bold;">Khi vào diễn đàn hãy thể hiện mình là người lịch sự !<a href="http://www.forumvi.com" target="_blank"></a></font></center>
</div>
</center>