Advertisement
Falkstids

Arcanine

Jun 7th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.14 KB | None | 0 0
  1. <style>
  2. body{
  3. background-color:transparent;
  4. overflow:hidden;
  5. }
  6. #gradient{
  7. background: linear-gradient(red, yellow); /* Standard syntax */
  8. background-size:100%;
  9. width:100%;
  10. height:100%;
  11. position:absolute;
  12. top:0px;
  13. left:0px;
  14. opacity:0.6;
  15. animation:flame 5s linear infinite;
  16.  
  17. }
  18.  
  19.  
  20. @keyframes flame {
  21. 0% { -webkit-filter: brightness(100%);
  22. }
  23. 20% {-webkit-filter: brightness(150%);
  24. }
  25. 25% {-webkit-filter: brightness(200%);
  26. }
  27. 35% {-webkit-filter: brightness(150%);
  28. }
  29. 40% {-webkit-filter: brightness(100%);
  30. }
  31. 45% {-webkit-filter: brightness(130%);
  32. }
  33. 55% {-webkit-filter: brightness(100%);
  34. }
  35. 60% {-webkit-filter: brightness(150%);
  36. }
  37. 65% {-webkit-filter: brightness(200%);
  38. }
  39. 75% {-webkit-filter: brightness(80%);
  40. }
  41. 85% {-webkit-filter: brightness(160%);
  42. }
  43. 90% {-webkit-filter: brightness(150%);
  44. }
  45. 100% {-webkit-filter: brightness(100%);
  46. }
  47. }
  48.  
  49.  
  50. #background-body{
  51. background-image:url(http://forum.gc.historygames.net/uploads/monthly_2016_09/background1-011.png.14b46c1e826acd884a125ad82e183b16.png);
  52. background-size:10%;
  53. background-position:left;
  54. width:100%;
  55. height:100%;
  56. position:absolute;
  57. top:0px;
  58. left:0px;
  59. opacity:0.7;
  60. z-index:2;
  61. }
  62.  
  63. #menu {
  64. border:solid 6px #000;
  65. background-image:url(http://i.imgur.com/7na1fIN.png);
  66. backround-color:transparent;
  67. background-size:100%;
  68. width:800px;
  69. height:350px;
  70. border-radius: 70px 20px 70px 20px;
  71. top:50%;
  72. left:50%;
  73. position:absolute;
  74. margin-top:-190px;
  75. margin-left:-400px;
  76. z-index:5;
  77.  
  78. }
  79.  
  80. #whosthat{
  81. background-image:url(http://i.imgur.com/HddtBOT.png);
  82. background-size:100%;
  83. background-repeat:no-repeat;
  84. width:800px;
  85. height:350px;
  86. position:absolute;
  87. border-radius: 65px 15px 65px 15px;
  88. background-position:0px -80px;
  89. z-index:50;
  90. transition:1s;
  91. opacity:0;
  92. }
  93.  
  94. #whosthat:target{
  95. animation: turn-off 0.55s linear ;
  96. opacity:0;
  97. z-index:0;
  98. }
  99.  
  100. @keyframes turn-off{
  101. 0%{
  102. transform:scale(1,1.3) translate3d(0,0,0);
  103. -webkit-filter:brightness(1);
  104. filter:brightness(1);
  105. opacity:1;
  106. }
  107. 60%{
  108. transform:scale(1.3,0.001) translate3d(0,0,0);
  109. -webkit-filter:brightness(10);
  110. filter:brightness(10);
  111. }
  112. 100%{
  113. transform:scale(0.000,0.0001) translate3d(0,0,0);
  114. -webkit-filter:brightness(50);
  115. filter:brightness(50);
  116. }
  117. }
  118.  
  119. #arcanine{
  120. width:400px;
  121. height:400px;
  122. position:absolute;
  123. top:50%;
  124. left:50%;
  125. margin-top:-150px;
  126. margin-left:-300px;
  127. animation: float 6s ease-in-out infinite;
  128. z-index:1;
  129. }
  130.  
  131. #arcanine a{
  132. background-image:url(http://i.imgur.com/HDhAKmy.png);
  133. background-size:100%;
  134. width:300px;
  135. height:300px;
  136. display:inline-block;
  137. z-index:0;
  138. }
  139.  
  140. @keyframes float {
  141. 0% {
  142.  
  143. transform: translatey(0px);
  144. }
  145. 50% {
  146.  
  147. transform: translatey(-10px);
  148. }
  149. 100% {
  150.  
  151. transform: translatey(0px);
  152. }
  153. }
  154.  
  155. #ball1{
  156.  
  157. background-image:url(https://68.media.tumblr.com/84c06021db3bfcffb6e2400e632da1bf/tumblr_odm3weRRwA1qfjr5zo2_540.gif);
  158. background-size:190%;
  159. background-position:-50px;
  160. width:100px;
  161. height:100px;
  162. top:50%;
  163. left:50%;
  164. margin-top:-230px;
  165. margin-left:400px;
  166. position:absolute;
  167. opacity:1;
  168. border:solid 6px #000;
  169. border-radius:100%;
  170. z-index:10;
  171. opacity:0;
  172. transition:1s;
  173. transition-delay:1s;
  174. }
  175.  
  176. #whosthat:target + #ball1{
  177. opacity:1;
  178. margin-left:350px;
  179. }
  180.  
  181. #ball2{
  182.  
  183. background-image:url(https://68.media.tumblr.com/1e762cfbd78fd456546b8601daa08f0d/tumblr_oqxusuHpcY1vpbs3jo1_500.gif);
  184. background-size:190%;
  185. background-position:-50px;
  186. width:100px;
  187. height:100px;
  188. top:50%;
  189. left:50%;
  190. margin-top:-230px;
  191. margin-left:-515px;
  192. position:absolute;
  193. opacity:1;
  194. border:solid 6px #000;
  195. border-radius:100%;
  196. z-index:10;
  197. opacity:0;
  198. transition:1s;
  199. transition-delay:1s;
  200. }
  201.  
  202. #whosthat:target ~ #ball2{
  203. opacity:1;
  204. margin-left:-465px;
  205. }
  206.  
  207. #ball3{
  208.  
  209. background-image:url(https://68.media.tumblr.com/4a17b6459b95791c96a8a8e50e479e08/tumblr_omfw0pqGdC1tx6wtwo3_500.gif);
  210. background-size:190%;
  211. background-position:-50px;
  212. width:100px;
  213. height:100px;
  214. top:50%;
  215. left:50%;
  216. margin-top:110px;
  217. margin-left:400px;
  218. position:absolute;
  219. opacity:1;
  220. border:solid 6px #000;
  221. border-radius:100%;
  222. z-index:10;
  223. opacity:0;
  224. transition:1s;
  225. transition-delay:1s;
  226. }
  227.  
  228. #whosthat:target ~ #ball3{
  229. opacity:1;
  230. margin-left:350px;
  231. }
  232.  
  233. #ball4{
  234.  
  235. background-image:url(https://68.media.tumblr.com/2b640258ebb34e1290e10d5f57151232/tumblr_o3mk15wgcF1tqptlzo1_500.gif);
  236. background-size:190%;
  237. background-position:-50px 0px;
  238. width:100px;
  239. height:100px;
  240. top:50%;
  241. left:50%;
  242. margin-top:110px;
  243. margin-left:-515px;
  244. position:absolute;
  245. opacity:0;
  246. border:solid 6px #000;
  247. border-radius:100%;
  248. z-index:10;
  249. opacity:0;
  250. transition:1s;
  251. transition-delay:1s;
  252. }
  253.  
  254. #whosthat:target ~ #ball4{
  255. opacity:1;
  256. margin-left:-465px;
  257. }
  258.  
  259. #image{
  260. background-image:url(http://i.imgur.com/jBzZh8a.png);
  261. background-size:40%;
  262. width:570px;
  263. height:500px;
  264. background-repeat:no-repeat;
  265. top:50%;
  266. left:50%;
  267. position:absolute;
  268. margin-top:-175px;
  269. margin-left:-950px;
  270. transform: scaleX(-1);
  271. filter: FlipH;
  272. opacity:0;
  273. z-index:10;
  274. transition:1s;
  275. transition-delay:1.5s;
  276. }
  277.  
  278. #whosthat:target ~ #image{
  279. opacity:1;
  280. margin-left:-800px;
  281. }
  282.  
  283. #image2{
  284. background-image:url(http://i.imgur.com/2N1swat.png);
  285. background-size:40%;
  286. width:630px;
  287. height:500px;
  288. background-repeat:no-repeat;
  289. top:50%;
  290. left:50%;
  291. position:absolute;
  292. margin-top:-175px;
  293. margin-left:380px;
  294. opacity:0;
  295. z-index:10;
  296. transition:1s;
  297. transition-delay:1.5s;
  298. }
  299.  
  300. #whosthat:target ~ #image2{
  301. opacity:1;
  302. margin-left:200px;
  303. }
  304.  
  305. #sprite{
  306. background-image:url(http://rs980.pbsrc.com/albums/ae290/CorrineAri/arcanine.gif~c200);
  307. width:130px;
  308. height:130px;
  309. position:absolute;
  310. top:50%;
  311. left:50%;
  312. background-size:100%;
  313. margin-top:-120px;
  314. margin-left:-225px;
  315. }
  316.  
  317. #one{
  318. width:480px;
  319. height:300px;
  320. position:absolute;
  321. top:50%;
  322. left:50%;
  323. background-image:url(http://i.imgur.com/SmHO87p.png);
  324. background-repeat:no-repeat;
  325. background-size:100%;
  326. margin-top:-150px;
  327. margin-left:-235px;
  328. z-index:0;
  329. opacity:1;
  330. }
  331.  
  332. #one:target {
  333. opacity:1;
  334.  
  335. }
  336.  
  337. #one:target #whosthat:target {
  338. opacity:0;
  339. z-index:0;
  340.  
  341. }
  342.  
  343. #navi{
  344. width:250px;
  345. height:30px;
  346. background-color:#fff;
  347. z-index:13;
  348. position:absolute;
  349. top:50%;
  350. left:50%;
  351. margin-top:140px;
  352. margin-left:-125px;
  353. float:left;
  354. }
  355.  
  356. #navi a{
  357. width:50px;
  358. height:30px;
  359. background-color:#b76e6e;
  360. display:inline-block;
  361.  
  362.  
  363. }
  364.  
  365. #navi + #whosthat:target {
  366. opacity:0;
  367. z-index:0;
  368. }
  369.  
  370. </style>
  371.  
  372. <div id="gradient"></div>
  373. <div id="background-body"></div>
  374. <div id="menu">
  375. <div id="navi"><a href="#one"></a><a href=""></a><a href=""></a></div>
  376. <div id="whosthat"><div id="arcanine"><a href="#whosthat"></a></div></div>
  377.  
  378. <div id="ball1"></div>
  379. <div id="ball2"></div>
  380. <div id="ball3"></div>
  381. <div id="ball4"></div>
  382. <div id="image"></div>
  383. <div id="image2"></div>
  384. <div id="one"> <div id="sprite"></div></div>
  385. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement