• 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.

Share code thay đổi css sau mỗi lần truy cập

Admin

Well-Known Member
Staff member
Administrator
Dán vào header, thay bằng link css của bạn
<script type="text/javascript">
function get_randomCssNum()
{
var ranCssNum= Math.floor(Math.random()*5);
//var ranCssNum= Math.floor(Math.random()*Number of CSS you Have);
return ranCssNum;
}
function getaCss()
{
var whichCss=get_randomCssNum();
var cssName=new Array(5)
// var cssName=new Array(Number of CSS you Have)
cssName[0]="<link rel='stylesheet' type='text/css' href='LinkCSS'>";
cssName[1]="<link rel='stylesheet' type='text/css' href='LinkCSS'>";
cssName[2]="<link rel='stylesheet' type='text/css' href='LinkCSS'>";
cssName[3]="<link rel='stylesheet' type='text/css' href='LinkCSS'>";
return cssName[whichCss]
}
document.write(getaCss());
</script>
 

Facebook Comments

New posts New threads New resources

Back
Top