thisisnotras

pokemon thinger.

Jul 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.63 KB | None | 0 0
  1. <style>
  2.  
  3. body {background: #;
  4. background-image:url(http://i1025.photobucket.com/albums/y311/ImahTL/repeat-background1_zpsd776ab15.gif);
  5. background-repeat:repeat;
  6.  
  7. }
  8.  
  9. #container{
  10. position: absolute;
  11. height: 500px;
  12. width: 500px;
  13. margin: auto;
  14. top: 0px;
  15. left: 0px;
  16. right: 0px;
  17. bottom: 0px;
  18. border: 0px solid black;
  19. }
  20.  
  21. #container2{
  22. position: absolute;
  23. top: 0px;
  24. left: 0px;
  25. right: 0px;
  26. bottom: 0px;
  27. }
  28.  
  29. #tophalf{
  30. position: absolute;
  31. height: 200px;
  32. width: 500px;
  33. top: 38px;
  34. left: 0px;
  35. border: 0px solid red;
  36. background-image:url(http://i67.tinypic.com/2wq7v68.jpg);
  37. background-position: top 3px center;
  38. background-repeat: no-repeat;
  39. background-size: auto 210%;
  40. z-index: 1;
  41.  
  42. }
  43.  
  44. #bottomhalf{
  45. position: absolute;
  46. height: 200px;
  47. width: 500px;
  48. bottom: 40px;
  49. left: 0px;
  50. border: 0px solid blue;
  51. background-image:url(http://i67.tinypic.com/2wq7v68.jpg);
  52. background-position: bottom center;
  53. background-repeat: no-repeat;
  54. background-size: auto 210%;
  55. z-index: 1;
  56. }
  57.  
  58. #middlehalf{
  59. position: absolute;
  60. top: 0px;
  61. bottom: 0px;
  62. left: 0px;
  63. right: 0px;
  64. margin: auto;
  65. height: 100px;
  66. border: 0px solid green;
  67. background-image:url(http://i67.tinypic.com/2wq7v68.jpg);
  68. background-position: center;
  69. background-repeat: no-repeat;
  70. background-size: auto 420%;
  71. }
  72.  
  73. #flashdiv{
  74. position: absolute;
  75. top: 0px;
  76. bottom: 0px;
  77. left: 0px;
  78. right: 0px;
  79. margin: auto;
  80. height: 50px;
  81. width: 420px;
  82. background: white;
  83. opacity: 0;
  84. -webkit-filter:blur(10px);
  85. border: 1px solid red;
  86. z-index: 2;
  87. border-radius: 30px 30px 30px 30px;
  88. transition: all 1s;
  89. -webkit-transition: all 1s;
  90. }
  91.  
  92. #pokebutton{
  93. position: absolute;
  94. top: 0px;
  95. bottom: 0px;
  96. left: 0px;
  97. right: 3px;
  98. margin: auto;
  99. height: 90px;
  100. width: 90px;
  101. background-image:url(http://i67.tinypic.com/2wq7v68.jpg);
  102. background-position: center;
  103. background-repeat: no-repeat;
  104. border-radius: 360px 360px 360px 360px;
  105. background-size: auto 500%;
  106. border: 0px solid green;
  107. z-index: 2;
  108. overflow: hidden;
  109. }
  110.  
  111. #pokefill{
  112. position: absolute;
  113. top: 0px;
  114. left: 0px;
  115. height: 110%;
  116. width: 110%;
  117. background: #FF1C1C;
  118. opacity: 0;
  119. }
  120.  
  121. #pokeflash{
  122. position: absolute;
  123. height: 110%;
  124. width: 110%;
  125. background: #FF1C1C;
  126. -webkit-filter:blur(10px);
  127. opacity: 0;
  128. }
  129.  
  130. #pokeblack{
  131. position: absolute;
  132. top: 0px;
  133. left: 0px;
  134. right: 0px;
  135. bottom: 0px;
  136. height: 50px;
  137. width: 50px;
  138. margin: auto;
  139. border-radius: 360px 360px 360px 360px;
  140. background: #000000;
  141. z-index: 1;
  142. }
  143.  
  144. #flashdiv2{
  145. position: absolute;
  146. top: 0px;
  147. bottom: 0px;
  148. left: 0px;
  149. right: 0px;
  150. margin: auto;
  151. height: 400px;
  152. background: white;
  153. opacity: 0;
  154. -webkit-filter:blur(10px);
  155. border: 1px solid red;
  156. z-index: 2;
  157. border-radius: 360px 360px 360px 360px;
  158. }
  159.  
  160. @-webkit-keyframes vibrationanim{
  161. 0%{margin-left: 0px;}
  162. 33.33%{margin-left: -2px;}
  163. 66.66%{margin-left: 2px;}
  164. 100%{margin-left: 0px;}
  165. }
  166.  
  167. @keframes vibrationanim{
  168. 0%{margin-left: 0px;}
  169. 33.33%{margin-left: -2px;}
  170. 66.66%{margin-left: 2px;}
  171. 100%{margin-left: 0px;}
  172. }
  173.  
  174. #starterbutton{
  175. position: absolute;
  176. top: 0px;
  177. left: 0px;
  178. right: 5px;
  179. bottom: 2px;
  180. margin: auto;
  181. height: 87px;
  182. width: 87px;
  183. border: 0px solid green;
  184. z-index: 5;
  185. box-shadow: 0px 0px 0px black;
  186. border-radius: 360px 360px 360px 360px;
  187. cursor:help;
  188. }
  189.  
  190. #starterbutton:active{
  191. cursor:progress;
  192. -webkit-transition: all 0s 0s;
  193. transition: all 0s 0s;
  194. box-shadow: 0px 0px 5px 10px #FF1C1C;
  195. opacity: .5;
  196. }
  197.  
  198. #pokecheck{opacity:0;}
  199.  
  200. #pokecheck:checked ~ #container2{
  201. -webkit-animation: vibrationanim .1s infinite linear;
  202. animation: vibrationanim .1s infinite linear;
  203. }
  204.  
  205. #pokecheck:checked ~ #container2 #flashdiv{
  206. opacity: 1;
  207. height: 100px;
  208. -webkit-transition: height 2s 2s, opacity 2s ease-in;
  209. transition: height 2s 2s, opacity 2s ease-in;
  210. }
  211.  
  212. #pokecheck:checked ~ #container2 #middlehalf{
  213. opacity: 0;
  214. -webkit-transition: all 2s 1s ease-in;
  215. transition: all 2s 1s ease-in;
  216. }
  217.  
  218. #pokecheck:checked ~ #container2 #tophalf{
  219. top: 0px;
  220. opacity: 0;
  221. -webkit-transition: all 2s 2s ease-in, opacity 1s 3s;
  222. transition: all 2s 2s ease-in, opacity 1s 3s;
  223. }
  224.  
  225. #pokecheck:checked ~ #container2 #bottomhalf{
  226. bottom: 0px;
  227. opacity: 0;
  228. -webkit-transition: all 2s 2s ease-in, opacity 1s 3s;
  229. transition: all 2s 2s ease-in, opacity 1s 3s;
  230. }
  231.  
  232. #pokecheck:checked ~ #container2 #flashdiv2{
  233. opacity: 1;
  234. -webkit-transition: all .1s 3.4s;
  235. transition: all .1s 3.4s;
  236. }
  237.  
  238. #pokecheck:checked ~ #container2{
  239. opacity: 0;
  240. -webkit-transition: all .8s 3.6s;
  241. transition: all .8s 3.6s;
  242. }
  243.  
  244. #pokecheck:checked ~ #container2 #pokefill{
  245. opacity: .8;
  246. transition: all .5s;
  247. -webkit-transition: all .5s;
  248. }
  249.  
  250. #pokecheck:checked ~ #container2 #pokebutton{
  251. opacity: 0;
  252. height: 160px;
  253. transition: all 2s 2s ease-in, opacity 2s 3s;
  254. -webkit-transition: all 2s 2s ease-in, opacity 2s 3s;
  255. }
  256.  
  257. #pokecheck:checked ~ #container2 #pokeflash{
  258. opacity: 1;
  259. -webkit-transition: all .5s 2s;
  260. transition: all .5s 2s;
  261. }
  262.  
  263. #buttonblocker{
  264. position: absolute;
  265. top: 0px;
  266. left: 0px;
  267. right: 0px;
  268. bottom: 0px;
  269. z-index: 4;
  270. }
  271.  
  272. #pokecheck:checked ~ #buttonblocker{
  273. z-index: 6;
  274. }
  275.  
  276. #truecontent{
  277. position: fixed;
  278. top: 0px;
  279. left: 0px;
  280. right: 0px;
  281. bottom: 0px;
  282. background: transparent;
  283. z-index: 3;
  284. opacity: 0;
  285. -webkit-transition: all 0s;
  286. transition: 0s;
  287. }
  288.  
  289. #pokecheck:checked ~ #truecontent{
  290. z-index: 7;
  291. opacity: 1;
  292. transition: all 1s 4.5s;
  293. transition: all 1s 4.5s;
  294. }
  295.  
  296. #picture1{
  297. background-color:;
  298. background-image:url(http://i.picpar.com/S1Vb.png);
  299. background-size:150%;
  300. background-position: 30% 30%;
  301. top:150px;
  302. left:50px;
  303. width: 150px;
  304. height: 300px;
  305. border: 5px #ffffff solid;
  306. border-radius: 100px 0px 0px 100px;
  307. overflow: auto;
  308. position: absolute;
  309. }
  310.  
  311.  
  312. </style>
  313.  
  314.  
  315. <body>
  316.  
  317. <div id="container">
  318.  
  319. <input type="checkbox" for="pokecheck" id="pokecheck" />
  320. <label for="pokecheck">
  321. <div id="starterbutton">
  322. </div> </label>
  323.  
  324. <div id="container2">
  325. <div id="tophalf">
  326. </div>
  327. <div id="bottomhalf">
  328. </div>
  329. <div id="middlehalf">
  330. </div>
  331. <div id="pokebutton">
  332. <div id="pokefill">
  333. </div>
  334. <div id="pokeblack">
  335. </div>
  336. <div id="pokeflash">
  337. </div>
  338. </div>
  339. <div id="flashdiv">
  340. </div>
  341. <div id="flashdiv2">
  342. </div>
  343. </div>
  344.  
  345. <div id="buttonblocker">
  346. </div>
  347. <div id="truecontent">
  348. <div id="picture1">
  349. </div>
  350. </div>
  351.  
  352. </div>
  353.  
  354.  
  355.  
  356. </body>
Advertisement
Add Comment
Please, Sign In to add comment