Advertisement
rashayritto

Scrolling speech box

Oct 4th, 2016
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.01 KB | None | 0 0
  1. <style>
  2.  
  3. #arrow{
  4. position: absolute;
  5. z-index: 2;
  6. left: 59vw;
  7. top: 44.5vh;
  8. width: 5vh;
  9. height: 10vh;
  10. background-color: #000000;
  11. skewx: 10;
  12. -ms-transform: skewX(40deg); /* IE 9 */
  13. -webkit-transform: skewX(40deg); /* Safari */
  14. transform: skewX(40deg);
  15. }
  16.  
  17. #box{
  18. position: absolute;
  19. z-index: 3;
  20. left: 40vw;
  21. top: 30vh;
  22. width: 20vw;
  23. height: 20.6vh;
  24. background-color: #FFFFFF;
  25. border: 2vh solid #000000;
  26. overflow: hidden;
  27. }
  28.  
  29. #box p{
  30.  width: 90%;
  31.  height: 90%;
  32.  position: relative;
  33.  left: 5%;
  34.  top: 12vh;
  35.  
  36. animation: textScroll 40s linear infinite;
  37. animation-delay:2s;
  38. -webkit-animation: textScroll 40s linear infinite;
  39. -webkit-animation-delay: 2s;
  40. }
  41.  
  42. @keyframes textScroll{
  43. from{top: 12vh;}
  44. to{top: -75vh;}
  45. }
  46. -webkit-@keyframes textScroll{
  47. from{top: 12vh;}
  48. to{top: -75vh;}
  49. }
  50. </style>
  51.  
  52. <div id="box">
  53. <p>
  54. <br><br>
  55. Lorem ipsum dolor sit amet, sit eu odio posse ullum, at tation causae his. Invenire efficiendi ad mel, no sea officiis gubergren. Tollit corpora definitionem eu duo, an pro singulis delicata, et paulo deleniti per. Nec in scribentur neglegentur, regione convenire pro eu, omnium aliquip cu duo.
  56.  
  57. Dignissim argumentum cu usu, esse partiendo signiferumque cu qui. Id eos diceret forensibus, eam ad postea oporteat. Probo consectetuer sea ex, qui eu eripuit definitionem. Ut regione legendos sed, has at case ornatus. Ea mei aeque accusam inimicus.
  58.  
  59. Cu sea affert praesent iracundia. Id has doming habemus disputando. Vim malis singulis ei, choro mucius has id, te quod prima his. Quo legere molestiae ex.
  60.  
  61. An est odio petentium. Pro at diceret admodum. Verear accumsan incorrupte vix no. Accusam democritum reformidans est eu, duo ut vide novum mentitum.
  62.  
  63. In option ceteros quo, sed nemore eligendi ex. Ei nullam erroribus cum, in sea consul quaerendum accommodare. Vis oratio molestiae reprimique cu, altera utamur veritus mea id, ei mei blandit disputationi. Ludus tritani ad his, mel dolorum deserunt antiopam at. Pro rebum tollit antiopam et.
  64. </p>
  65. </div>
  66.  
  67. <div id="arrow">
  68. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement