silvercybermen

Theme 18.5: Angel

Jun 21st, 2015
1,913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.11 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!--
  4.  
  5. THEME 18.5: ANGEL BY LUNECERISE AKA ROMULVS
  6. *dedicated to rachelle aka sehuneu for her birthday c: ily <3
  7.  
  8. -keep credit intact
  9. -don't steal any code
  10. -don't use as a basecode/claim as your own
  11.  
  12. -->
  13.  
  14.  
  15. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  16. <head>
  17.  
  18. <title>{Title}</title>
  19. <link rel="shortcut icon" href="{Favicon}">
  20. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  21. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  22.  
  23. <meta name="color:Background" content="#ffffff"/>
  24. <meta name="color:Text" content="#bbbbbb"/>
  25. <meta name="color:Accent" content="#A987E2"/>
  26. <meta name="color:Link" content="#aaaaaa"/>
  27. <meta name="color:Hover" content="#b3b3b3"/>
  28. <meta name="color:Line" content="#f2f2f2"/>
  29. <meta name="color:Border" content="#eeeeee"/>
  30. <meta name="color:Tooltip" content="#777777"/>
  31. <meta name="color:Scrollbar" content="#eeeeee"/>
  32.  
  33. <meta name="image:Background" content=""/>
  34.  
  35. <meta name="if:2 Columns" content="1"/>
  36.  
  37. <meta name="text:Blog Title" content="">
  38. <meta name="text:linkA" content="">
  39. <meta name="text:linkA url" content="/">
  40. <meta name="text:linkB" content="">
  41. <meta name="text:linkB url" content="/">
  42. <meta name="text:linkC" content="">
  43. <meta name="text:linkC url" content="/">
  44. <meta name="text:linkD" content="">
  45. <meta name="text:linkD url" content="/">
  46. <meta name="text:linkE" content="">
  47. <meta name="text:linkE url" content="/"/>
  48.  
  49. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  50. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  51. <script>
  52. (function($){
  53. $(document).ready(function(){
  54. $("[title]").style_my_tooltips({
  55. tip_follows_cursor:true,
  56. tip_delay_time:1,
  57. tip_fade_speed:100,
  58. attribute:"title"
  59. });
  60. });
  61. })(jQuery);
  62. </script>
  63.  
  64. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  65. <script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  66. <script>
  67. $(function(){
  68. var $container = $('#container');
  69. $container.imagesLoaded(function(){
  70. $container.masonry({
  71. itemSelector: '.char',
  72. });
  73. });
  74. $container.infinitescroll({
  75. itemSelector : ".char",
  76. loadingImg : "",
  77. loadingText : "<em></em>",
  78. bufferPx : 10000,
  79. extraScrollPx: 12000,
  80. },
  81. function( newElements ) {
  82. var $newElems = $( newElements ).css({ opacity: 0 });
  83. $newElems.imagesLoaded(function(){
  84. $newElems.animate({ opacity: 1 });
  85. $container.masonry( 'appended', $newElems, true );
  86. });
  87. }
  88. );
  89. });
  90. </script>
  91.  
  92. <link href='http://fonts.googleapis.com/css?family=Lato:400,700|Open+Sans:400,600|Roboto:400,500' rel='stylesheet' type='text/css'>
  93.  
  94. <style type="text/css">
  95.  
  96. ::-webkit-scrollbar {width:4px; height:auto; background:{color:Background};}
  97. ::-webkit-scrollbar-corner {background:transparent;}
  98. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar}; width:2px; border:1px solid {color:background};}
  99. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};height:4px !important;}
  100. ::-webkit-scrollbar-increment {width:4px; height:4px; background-color:#fff;}
  101.  
  102. iframe#tumblr_controls {
  103. white-space:nowrap;
  104. -webkit-filter: invert(100%);
  105. -moz-filter: invert(100%);
  106. -o-filter: invert(100%);
  107. -ms-filter: invert(100%);
  108. filter: invert(100%);
  109. opacity:.2;transition: .8s ease-in-out;
  110. -webkit-transition: .8s ease-in-out;
  111. -moz-transition: .8s ease-in-out;
  112. -o-transition: .8s ease-in-out;
  113. }
  114.  
  115. iframe#ask_form {
  116. padding-bottom:10px;
  117. overflow-y:scroll;
  118. height:260px;
  119. }
  120.  
  121. #s-m-t-tooltip {
  122. max-width:300px;
  123. padding: 3px 5px;
  124. margin:10px;
  125. background-color:{color:background};
  126. font-family:consolas;
  127. font-size:9px;
  128. font-style:bold;
  129. letter-spacing:1px;
  130. text-transform:uppercase;
  131. color:{color:tooltip};
  132. box-shadow:5px 5px 0.2em #f0f0f0;
  133. border-top:1px solid #f9f9f9;
  134. border-left:1px solid #f9f9f9;
  135. z-index:10000000000000000000000000000000;
  136. -moz-transition-duration: 0.3s;
  137. -webkit-transition-duration: 0.3s;
  138. -o-transition-duration: 0.3s;
  139. }
  140.  
  141. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  142. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  143. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  144.  
  145. .fade-in {
  146. opacity:0;
  147. -webkit-animation:fadeIn ease-in 1;
  148. -moz-animation:fadeIn ease-in 1;
  149. animation:fadeIn ease-in 1;
  150. -webkit-animation-fill-mode:forwards;
  151. -moz-animation-fill-mode:forwards;
  152. animation-fill-mode:forwards;
  153. -webkit-animation-duration:1s;
  154. -moz-animation-duration:1s; animation-duration:1s; }
  155.  
  156. .fade-in.one { -webkit-animation-delay: 0.7s; -moz-animation-delay: 0.7s; animation-delay: 0.7s; }
  157.  
  158. ::selection {background-color:{color:Accent};color:white;text-shadow:none;}
  159. ::-o-selection {background-color:{color:accent};color:#fff;text-shadow:none;}
  160. ::-moz-selection {background-color:{color:accent};color:#fff;text-shadow:none;}
  161.  
  162. #infscr-loading img {display:none!important;}
  163.  
  164. *, body, img { cursor:url(http://static.tumblr.com/vmteopo/yYInjhg6e/small_black_cursor.png), auto;}
  165.  
  166. a, a:hover, a:active {cursor:url(http://static.tumblr.com/vmteopo/DH3njhg50/help_cursor.png), crosshair; }
  167.  
  168. body {
  169. background:{color:background} url({image:background}) repeat fixed left top;
  170. margin:0px;
  171. color:{color:text};
  172. font-family:'Open Sans', sans-serif;
  173. font-size:9px;
  174. line-height:112%;
  175. }
  176.  
  177. a {
  178. text-decoration:none;
  179. -moz-outline-style:none;
  180. color:{color:link};
  181. transition:0.5s ease-in-out;
  182. -webkit-transition:0.5s ease-in-out;
  183. -moz-transition:0.5s ease-in-out;
  184. -ms-transition:0.5s ease-in-out;
  185. -o-transition:0.5s ease-in-out;
  186. }
  187.  
  188. a:hover {color:{color:hover};}
  189. img {border:none;max-width:100%;height:auto;}
  190. h1 {font-size:12px;text-transform:uppercase;}
  191. h2 {font-size:15px;text-shadow:2px 2px 0px #f1f1f1;line-height:115%}
  192. b, strong {font-weight:700;}
  193. small, sub {font-size:7px;}
  194. big {font-size:13px;}
  195. ol {list-style:lower-roman;line-height:123%;}
  196. li {list-style:circle;line-height:123%;}
  197. blockquote {padding-left:5px;border-left:1px solid {color:line};margin-right:0;}
  198. blockquote blockquote {padding-left:5px;border-left:1px solid {color:line};margin-right:0;}
  199.  
  200. pre {
  201. padding:3px 5px;
  202. text-transform:uppercase;
  203. white-space: pre-wrap;
  204. white-space: -moz-pre-wrap;
  205. white-space: -pre-wrap;
  206. white-space: -o-pre-wrap;
  207. word-wrap: break-word;
  208. }
  209.  
  210. #sidebar {
  211. position:fixed;
  212. width:240px;
  213. height:auto;
  214. border:1px dashed {color:border};
  215. background:{color:background};
  216. right:200px;
  217. top:150px;
  218. opacity:1;
  219. padding:20px;
  220. z-index:2;
  221. }
  222.  
  223. .title {
  224. font-size:10px;
  225. width:220px;
  226. text-transform:uppercase;
  227. padding:5px 10px;
  228. text-align:center;
  229. line-height:110%;
  230. }
  231.  
  232. .title span {
  233. letter-spacing:1px;
  234. margin-left:1px;
  235. text-decoration:none;
  236. padding:5px 8px;
  237. background:rgba(255,255,255,0.9);
  238. border:1px dotted #eee;
  239. color:#777;
  240. }
  241.  
  242. .desc {
  243. margin-top:-10px;
  244. line-height:110%;
  245. font-size:8.5px;
  246. font-style:italic;
  247. width:220px;
  248. height:auto;
  249. padding:10px;
  250. text-align:center;
  251. color:{color:text};
  252. }
  253.  
  254. .links {
  255. margin-top:2px;
  256. width:200px;
  257. padding:10px 20px;
  258. word-spacing:1em;
  259. text-align:center;
  260. font-size:9px;
  261. text-transform:lowercase;
  262. }
  263.  
  264. .links a:hover {color:{color:Hover};}
  265. .links a, #details a {
  266. display: inline-block;
  267. vertical-align: middle;
  268. -webkit-transform: translateZ(0);
  269. transform: translateZ(0);
  270. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  271. -webkit-backface-visibility: hidden;
  272. backface-visibility: hidden;
  273. -moz-osx-font-smoothing: grayscale;
  274. position: relative;
  275. overflow: hidden;
  276. }
  277.  
  278. .links a:before, #details a:before {
  279. content: "";
  280. position: absolute;
  281. z-index: -1;
  282. left: 50%;
  283. right: 50%;
  284. bottom: 0;
  285. background:{color:hover};
  286. height: 1px;
  287. -webkit-transition-property: left, right;
  288. transition-property: left, right;
  289. -webkit-transition-duration: 0.3s;
  290. transition-duration: 0.3s;
  291. -webkit-transition-timing-function: ease-out;
  292. transition-timing-function: ease-out;
  293. }
  294. .links a:hover:before, .links a:focus:before, .links a:active:before, #details a:hover:before, #details a:focus:before, #details a:active:before {
  295. left: 0;
  296. right: 0;
  297. }
  298.  
  299. .pagi{
  300. font-size:8px;
  301. text-align:center;
  302. padding:5px;
  303. width:250px;
  304. letter-spacing:0px;
  305. background:#fff;
  306. z-index:99;
  307. }
  308.  
  309. .jump_page {height:10px;width:20px;padding:5px;}
  310. .current_page {height:10px;width:20px;padding:3px 5px;text-decoration:underline;}
  311.  
  312. #all {
  313. padding:10px 70px;
  314. {block:ifnot2Columns}width:270px;margin-left:450px;{/block:ifnot2Columns}
  315. {block:if2Columns}width:750px;margin-left:150px;{/block:if2Columns}
  316. font-size:8.5px;
  317. z-index:2;
  318. margin-bottom:90px;
  319. padding-bottom:70px;
  320. letter-spacing:0.5px;
  321. }
  322.  
  323. #thing {margin-bottom:50px;padding-bottom:50px;}
  324.  
  325. #posts {
  326. width:250px;
  327. padding:10px;
  328. position:relative;
  329. float:left;
  330. margin-top:50px;
  331. {block:if2columns}margin:50px 50px 0;{/block:if2columns}
  332. background-color:rgba(255,255,255,0.5);
  333. border:dotted 1px {color:line};
  334. -ms-word-break: break-all;
  335. word-break: break-all;
  336. word-break: break-word;
  337. -webkit-hyphens: auto;
  338. -moz-hyphens: auto;
  339. -ms-hyphens: auto;
  340. hyphens: auto;
  341. }
  342.  
  343. {block:ifnot2columns}#posts:last-child {margin-bottom:100px;}{/block:ifnot2columns}
  344.  
  345. #caption {
  346. width:250px;
  347. padding:5px 5px 0;
  348. -ms-word-break: break-all;
  349. word-break: break-all;
  350. word-break: break-word;
  351. -webkit-hyphens: auto;
  352. -moz-hyphens: auto;
  353. -ms-hyphens: auto;
  354. hyphens: auto;
  355. }
  356.  
  357. #posts:hover #details {opacity:1;margin-left:-10px;}
  358.  
  359. #details {
  360. opacity:0;
  361. max-width:50px;
  362. text-align:left;
  363. margin-top:-17px;
  364. margin-left:-30px;
  365. text-transform:uppercase;
  366. padding:3px 3px 3px 10px;
  367. font-size:8px;
  368. font-style:italic;
  369. background:{color:background};
  370. transition:0.5s ease-in-out;
  371. -webkit-transition:0.5s ease-in-out;
  372. -moz-transition:0.5s ease-in-out;
  373. -ms-transition:0.5s ease-in-out;
  374. -o-transition:0.5s ease-in-out;
  375. }
  376.  
  377. #details a {display:inline-block;padding:0px;}
  378.  
  379. #dets {padding:5px;border-top:1px solid {color:border};font-size:8px;}
  380. #dets a {display:inline-block;}
  381.  
  382. #tags {display:inline-block;opacity:0.9;}
  383. #tags a {display:inline-block;}
  384.  
  385. #question {
  386. padding:10px;
  387. letter-spacing:2px;
  388. text-align:center;
  389. border:1px {color:border} dotted;
  390. color:{color:text};
  391. background-color:{color:background};
  392. }
  393.  
  394. #akport {
  395. width:230px;
  396. text-align:center;
  397. height:12px;
  398. padding:5px 0;
  399. color:#444;
  400. opacity:1;
  401. background-color:{color:background};
  402. z-index:99999;
  403. margin-bottom:3px;
  404. }
  405.  
  406. #akport a {background-color:{color:background};text-align:center;text-decoration:none;}
  407. #akport a:hover {text-decoration:none;letter-spacing:0.6em;}
  408.  
  409. .tumblr_audio_player {width:100%;margin-top:2px;}
  410.  
  411. .player {
  412. width:30px;
  413. height:30px;
  414. padding:10px;
  415. border:dotted 1px transparent;
  416. overflow:hidden;
  417. margin:0;
  418. display:inline-block;
  419. }
  420.  
  421. .audioinfo {
  422. color:{color:accent};
  423. display:inline-block;
  424. padding:15px;
  425. text-align:left;
  426. font-size:10px;
  427. background:#fbfbfb;
  428. width:160px;
  429. float:right;
  430. margin:0px 0 -54px -2px;
  431. border:dotted 1px #aaa;
  432. }
  433.  
  434. .chat li {list-style:none;line-height:110%;}
  435. .line.odd {border-left:1px solid {color:line};padding:3px 5px;}
  436. .line.even {border-left:1px solid transparent;padding:3px 5px;}
  437.  
  438. .webs {font-size:12px;text-transform:uppercase;padding-top:10px;text-align:center;}
  439. .webs a:before, .webs a:after {
  440. display: inline-block;
  441. opacity: 0;
  442. -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  443. -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  444. transition: transform 0.3s, opacity 0.2s;
  445. }
  446.  
  447. .webs a:before {
  448. margin-right: 10px;
  449. content: '[';
  450. -webkit-transform: translateX(20px);
  451. -moz-transform: translateX(20px);
  452. transform: translateX(20px);
  453. }
  454.  
  455. .webs a:after {
  456. margin-left: 10px;
  457. content: ']';
  458. -webkit-transform: translateX(-20px);
  459. -moz-transform: translateX(-20px);
  460. transform: translateX(-20px);
  461. }
  462.  
  463. .webs a:hover:before, .webs a:hover:after, .webs a:focus:before, .webs a:focus:after {
  464. opacity: 1;
  465. -webkit-transform: translateX(0px);
  466. -moz-transform: translateX(0px);
  467. transform: translateX(0px);
  468. }
  469.  
  470. #notescontain {
  471. top:60px;
  472. left:600px;
  473. width:auto;
  474. height:auto;
  475. border:1px dashed {color:accent};
  476. position:fixed;
  477. }
  478. .notes {
  479. width:200px;
  480. max-height:150px;
  481. padding:5px 10px;
  482. margin:10px 15px 10px 5px;
  483. overflow-y:scroll;
  484. overflow-x:hidden;
  485. text-align:left;
  486. font-size:8px;
  487. line-height:125%;
  488. }
  489.  
  490. .notes img {display:none;}
  491. .notes ol, .notes li {list-style:circle;line-height:125%;}
  492.  
  493. #credit, #credit a {
  494. position:fixed;
  495. bottom:4px;
  496. right:4px;
  497. padding:5px 4px;
  498. font-family: helvetica;
  499. text-transform:uppercase;
  500. color:#aaa;
  501. font-size:8px;
  502. -moz-transition-duration:0.3s;
  503. -webkit-transition-duration:0.3s;
  504. -o-transition-duration:0.3s;
  505. -ms-transition-duration:0.3s;
  506. }
  507.  
  508. #credit:hover, #credit a:hover {
  509. font-family: helvetica;
  510. text-decoration:none;
  511. color:#000;
  512. background-color:#fff;
  513. text-shadow:#aaa 2px 2px 0.2em;
  514. -moz-transition-duration:0.4s;
  515. -webkit-transition-duration:0.4s;
  516. -o-transition-duration:0.4s;
  517. -ms-transition-duration:0.4s;
  518. }
  519.  
  520.  
  521. {CustomCSS}</style></head>
  522. <body>
  523.  
  524. <div id="sidebar">
  525. <div class="title"><span>{text:Blog Title}</span></div>
  526. <div class="links">
  527. {block:iflinkA}<a href="{text:linkA url}">{text:linkA}</a>{/block:iflinkA}
  528. {block:iflinkB}<a href="{text:linkB url}">{text:linkB}</a>{/block:iflinkB}
  529. {block:iflinkC}<a href="{text:linkC url}">{text:linkC}</a>{/block:iflinkC}
  530. {block:iflinkD}<a href="{text:linkD url}">{text:linkD}</a>{/block:iflinkD}
  531. {block:iflinkE}<a href="{text:linkE url}">{text:linkE}</a>{/block:iflinkE}
  532. </div>
  533. <div class="desc">
  534. {Description}
  535. </div>
  536. {block:ifnot2Columns}
  537. {block:Pagination}<div class="pagi">
  538. {block:PreviousPage}<a href="{PreviousPage}">&larr;</a>&emsp;{/block:PreviousPage}
  539. {block:JumpPagination length="3"}
  540. {block:CurrentPage}<span class="current_page">{PageNumber}</span>&emsp;{/block:CurrentPage}
  541. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>&emsp;{/block:JumpPage}
  542. {/block:JumpPagination}
  543. {block:NextPage}<a href="{NextPage}">&rarr;</a>{/block:NextPage}
  544. </div>{/block:Pagination}
  545. {/block:ifnot2Columns}
  546. {block:if2Columns}
  547. {block:IndexPage}<div class="column navigation" id="navigation">
  548. {block:Pagination}
  549. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  550. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  551. </div>{/block:IndexPage}
  552. {/block:if2Columns}</div>
  553. <div id="thing">
  554. <div id="all" class="box fade-in one">
  555. {block:Posts}<div id="posts">
  556.  
  557.  
  558. {block:IndexPage}<div id="details">
  559. {block:Date}<a href="{Permalink}" title="{12HourWithZero}:{Minutes}{AmPm}">{MonthNumberWithZero}.{DayOfMonthWithZero}.{ShortYear}</a>{/block:Date}
  560. </div>
  561. {/block:IndexPage}
  562.  
  563.  
  564. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  565.  
  566. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}</center>{block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:Photo}
  567.  
  568. {block:Link}<div class="webs"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  569.  
  570. {block:Photoset}<center>{Photoset-250}</center>{block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:Photoset}
  571.  
  572. {block:Quote}<div style="text-align:center"><h2>“{Quote}”</h2><br>↳ {Source}</div><br>{/block:Quote}
  573.  
  574. {block:Audio}
  575. <div class="player">{AudioPlayerWhite}</div>
  576. <div class="audioinfo">
  577. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  578. </div>
  579. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:Audio}
  580.  
  581. {block:Video}{Video-250}{block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:Video}
  582.  
  583. {block:Chat}<div class="chat">{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}<li class="line {Alt}">{block:Label}<b>{Label}</b>{/block:Label} {Line}</li><br>{/block:Lines}</div>{/block:Chat}
  584.  
  585. {block:Answer}<div id="question"><span style="text-transform:uppercase;font-size:10px; padding-bottom:10px"><div id="akport">{Asker}</div></span>{Question}</div><left>{Answer}</left>{/block:Answer}
  586.  
  587. {block:PermalinkPage}
  588. <div id="dets">{block:Date}{MonthNumberWithZero}.{DayOfMonthWithZero}.{ShortYear}{/block:Date}&emsp;{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{/block:RebloggedFrom}{block:ContentSource}&emsp;<a href="{SourceURL}" title="{SourceTitle}">src</a>{/block:ContentSource}{block:NoteCount}&emsp;+{NoteCount}{/block:NoteCount}{block:HasTags}<br>&emsp;<i>— filed under:</i> {block:Tags}<div id="tags"><a href="{TagURL}">{Tag}&emsp;</a></div>{/block:Tags}{/block:HasTags}</div>
  589. {/block:PermalinkPage}
  590.  
  591. </div>
  592. {/block:Posts}
  593. {block:PostNotes}<div id="notescontain"><div class="notes">{PostNotes}</div></div>{/block:PostNotes}
  594. {/block:Posts}
  595. </div></div></div>
  596.  
  597.  
  598.  
  599. {block:if2Columns}
  600. {block:IndexPage} <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  601. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  602. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  603.  
  604. <script type="text/javascript">
  605. $(window).load(function(){
  606. var $wall = $('#all');
  607. $wall.imagesLoaded(function(){
  608. $wall.masonry({
  609. itemSelector: '#posts',
  610. isAnimated : true
  611. });
  612. });
  613. $wall.infinitescroll({
  614. navSelector : "div#navigation",
  615. nextSelector : "div#navigation a#nextPage",
  616. itemSelector : '#posts',
  617. loadingImg : "",
  618. loadingText : " ",
  619. donetext : " ",
  620. extraScrollPx : 0,
  621. bufferPx : 10000,
  622. debug : false,
  623. errorCallback: function() {
  624. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  625. }},
  626. function( newElements ) {
  627. var $newElems = $( newElements );
  628. $newElems.hide();
  629. $newElems.imagesLoaded(function(){
  630. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 250, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  631. });
  632. }); $('#all').show(500);
  633. });
  634. </script>
  635.  
  636. <script language="JavaScript">
  637. function function1(){
  638. window.scrollTo(0,5);
  639. }
  640. function function2(){
  641. window.scroll(0,2);
  642. }
  643. </script>
  644. {/block:IndexPage}
  645. {/block:if2Columns}
  646.  
  647. <div id="credit"><a href="http://lunecerise.co.vu" title="lunecerise">LC</a></div>
  648.  
  649. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment