Guest User

4chan halloween CSS

a guest
Oct 31st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. CSS is here: https://pastebin.com/pSgt8eJd
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8. HTML SCRIPT THAT GENERATES SKELETONS
  9.  
  10. <script> function fc_skelrot(e) { var el, idx, thres, max; if (e && e.detail && e.detail.count) { thres = 0.33; } else { thres = 0.0; } max = 23; if (Math.random() < thres) { return; } if (el = document.getElementById('skellington')) { el.parentNode.removeChild(el); } idx = 1 + Math.floor(Math.random() * max); el = document.createElement('img'); el.id = 'skellington'; el.className = 'desktop' + (Math.random() < 0.25 ? ' topskel' : ''); el.alt = ''; el.src = '//s.4cdn.org/image/skeletons/' + idx + '.gif'; document.body.insertBefore(el, document.body.firstElementChild); } function fc_spooky2017_init() { if (window.matchMedia && window.matchMedia('(min-width: 481px)').matches) { document.addEventListener('4chanThreadUpdated', fc_skelrot, false); window.dark_captcha = true; fc_skelrot(); } } function fc_spooky2017_cleanup() { var el = document.getElementById('skellington'); window.dark_captcha = false; document.removeEventListener('4chanThreadUpdated', fc_skelrot, false); el && el.parentNode.removeChild(el); }</script>
  11.  
  12.  
  13.  
  14. SKELETONS (extracted from http://s.4cdn.org/image/skeletons/1.gif through http://s.4cdn.org/image/skeletons/23.gif ):
  15.  
  16. https://mega.nz/#F!7IAxmSwI!QJ07G1meRI5nu8O0T6UCXQ
Add Comment
Please, Sign In to add comment