Advertisement
1xptolevitico69

Change Content Onclick

Sep 23rd, 2019
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title></title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. img {
  10. display:none;
  11. width:100%;
  12. height:100%;
  13. }
  14.  
  15. #div {
  16.   position:absolute;
  17.   left:15%;
  18.   width:70%;
  19.   height:500px;
  20.   border:1px solid red;
  21.   box-sizing: border-box;
  22. }
  23.  
  24. #sp {
  25.   width:90%;
  26.   position:absolute;
  27.   left:50%;
  28.   top:50%;
  29.   transform:translate(-50%,-50%);
  30.   font-size:30px;
  31.   font-family:courier new;
  32.   font-weight:900;
  33.   color:#990000;
  34. }
  35.  
  36. #sp:first-letter {
  37.   font-size:60px;
  38.   letter-spacing:2px;
  39. }
  40.  
  41. </style>
  42. </head>
  43. <body>
  44.  
  45.  
  46. <div id='div'>
  47. <span id='sp'style='text-align:center;'>
  48. Click inside to change content</span>
  49. <img id='img'>
  50. </div>
  51.  
  52.  
  53. <script>
  54.  
  55. x = [
  56. 'Style never met and those among great. At no or september sportsmen he perfectly happiness attending. Depending listening delivered off new she procuring satisfied sex existence. Person plenty answer to exeter it if. Law use assistance especially resolution cultivated did out sentiments unsatiable. Way necessary had intention happiness but september delighted his curiosity. Furniture furnished or on strangers neglected remainder engrossed. ',
  57. 'Greatly cottage thought fortune no mention he. Of mr certainty arranging am smallness by conveying. Him plate you allow built grave. Sigh sang nay sex high yet door game. She dissimilar was favourable unreserved nay expression contrasted saw. Past her find she like bore pain open. Shy lose need eyes son not shot. Jennings removing are his eat dashwood. Middleton as pretended listening he smallness perceived. Now his but two green spoil drift.',
  58. 'Received overcame oh sensible so at an. Formed do change merely to county it. Am separate contempt domestic to to oh. On relation my so addition branched. Put hearing cottage she norland letters equally prepare too. Replied exposed savings he no viewing as up. Soon body add him hill. No father living really people estate if. Mistake do produce beloved demesne if am pursuit.',
  59. 'He my polite be object oh change. Consider no mr am overcame yourself throwing sociable children. Hastily her totally conduct may. My solid by stuff first smile fanny. Humoured how advanced mrs elegance sir who. Home sons when them dine do want to. Estimating themselves unsatiable imprudence an he at an. Be of on situation perpetual allowance offending as principle satisfied. Improved carriage securing are desirous too.',
  60. 'https://images.pexels.com/photos/981041/pexels-photo-981041.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500'
  61. ];
  62.  
  63.  
  64.  i=0;
  65.  
  66.  div.onclick=function(){
  67.   sp.innerHTML = x[i];
  68.   img.src=x[i];
  69.  
  70.   i++;
  71.  
  72.   if(i == x.length){
  73. img.style.display='block';
  74. sp.textContent = x[''];
  75. }
  76.  
  77.  if(i > x.length){
  78. sp.innerHTML ='No more content available.<br><a onclick="location.reload();"  href="#">RELOAD</a>';
  79. img.style.display='none'; }
  80. }
  81.  
  82.  
  83. </script>
  84. </body>
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement