Twilight Forums

Idle chat for wannabe heroes
It is currently Tue Jun 18, 2013 6:46 pm

All times are UTC - 7 hours




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Wiki fading out
PostPosted: Sat Apr 02, 2011 6:27 am 
Offline
User avatar

Joined: Mon Jun 02, 2008 11:28 am
Posts: 119
When I view the wiki, it gradually fades away. This is due to a bit of javascript which I've attached for posterity. Now April 1st has gone, can it be removed?

Code:
<script>
   function fade() {
      var c = readCookie('thw_fade41');
      if(c == null){
         c = 1;
      }
      if (c > .005 ){
         for (i = c; i >= 0; i -= .005) {
            setTimeout("setOpacity(" + i + ")", (c-i) * 150000);
         }
     }
   }
   
   function setOpacity(level) {
     document.body.style.opacity = level;
     document.body.style.MozOpacity = level;
     document.body.style.KhtmlOpacity = level;
     document.body.style.filter = "alpha(opacity=" + (level * 100) + ");";
     createCookie('thw_fade41',level,1.5);
   }
   
   function createCookie(name,value,hours) {
      if (hours) {
         var date = new Date();
         date.setTime(date.getTime()+(hours*60*60*1000));
         var expires = "; expires="+date.toGMTString();
      }
      else var expires = "";
      document.cookie = name+"="+value+expires+"; path=/";
   }

   function readCookie(name) {
      var nameEQ = name + "=";
      var ca = document.cookie.split(';');
      for(var i=0;i < ca.length;i++) {
         var c = ca[i];
         while (c.charAt(0)==' ') c = c.substring(1,c.length);
         if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
      }
      return null;
   }

   function eraseCookie(name) {
      createCookie(name,"",-1);
   }
   fade();


Top
 Profile  
 
 Post subject: Re: Wiki fading out
PostPosted: Sat Apr 02, 2011 7:42 am 
Offline

Joined: Thu Sep 04, 2008 5:33 pm
Posts: 148
...Twilight Heroes and the wiki are not run by the same person so they have nothing to do with each other. You could delete this thread and move it to the wiki for better results

_________________
Image


Top
 Profile  
 
 Post subject: Re: Wiki fading out
PostPosted: Mon Apr 04, 2011 1:49 am 
Offline
User avatar

Joined: Sun Apr 08, 2007 1:01 am
Posts: 4253
Location: the Conservatory with the lead pipe
It's been fixed.

_________________
Image
The churches are empty / The priest has gone home / And we are left standing / Together alone
--October Project: "Dark Time"


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 7 hours


Who is online

Users browsing this forum: RKBrumbelow and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group