Advertisement
OneTallor

Untitled

Oct 29th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.35 KB | None | 0 0
  1. /* Word Rotate */
  2. .word-rotate {
  3.     display: inline-block;
  4.     overflow: hidden;
  5.     text-align: center;
  6.     position: relative;
  7.     max-height: 22px;
  8.     line-height: 22px;
  9. }
  10.  
  11. .word-rotate .word-rotate-items {
  12.     position: relative;
  13.     top: 0;
  14.     width: 0;
  15.     display: inline-block;
  16. }
  17.  
  18. .word-rotate .word-rotate-items span {
  19.     display: inline-block;
  20.     white-space: nowrap;
  21. }
  22.  
  23. .word-rotate .word-rotate-items span:not(:first-child) {
  24.     display: none;
  25. }
  26.  
  27. .word-rotate.active .word-rotate-items {
  28.     position: relative;
  29. }
  30.  
  31. .word-rotate.active .word-rotate-items span {
  32.     display: inline-block;
  33.     float: left;
  34.     clear: both;
  35. }
  36.  
  37. h1.word-rotator-title .inverted {
  38.     min-height: 56px;
  39. }
  40.  
  41. h1.word-rotator-title .word-rotate {
  42.     max-height: 46px;
  43.     line-height: 46px;
  44.     margin-bottom: -9px;
  45. }
  46.  
  47. h2.word-rotator-title .inverted {
  48.     min-height: 46px;
  49. }
  50.  
  51. h2.word-rotator-title .word-rotate {
  52.     max-height: 42px;
  53.     line-height: 42px;
  54.     margin-bottom: -9px;
  55. }
  56.  
  57. h3.word-rotator-title .inverted {
  58.     min-height: 25px;
  59. }
  60.  
  61. h3.word-rotator-title .word-rotate {
  62.     max-height: 24px;
  63.     line-height: 24px;
  64.     margin-bottom: -2px;
  65. }
  66.  
  67. h4.word-rotator-title .inverted {
  68.     min-height: 32px;
  69. }
  70.  
  71. h4.word-rotator-title .word-rotate {
  72.     max-height: 27px;
  73.     line-height: 27px;
  74.     margin-bottom: -6px;
  75. }
  76.  
  77. h5.word-rotator-title .inverted {
  78.     min-height: 18px;
  79. }
  80.  
  81. h5.word-rotator-title .word-rotate {
  82.     max-height: 18px;
  83.     line-height: 18px;
  84.     margin-bottom: -4px;
  85. }
  86.  
  87. h6.word-rotator-title .inverted {
  88.     min-height: 20px;
  89. }
  90.  
  91. h6.word-rotator-title .word-rotate {
  92.     max-height: 18px;
  93.     line-height: 18px;
  94.     margin-bottom: -4px;
  95. }
  96.  
  97. p .inverted {
  98.     min-height: 24px;
  99. }
  100.  
  101. p .word-rotate {
  102.     max-height: 22px;
  103.     line-height: 22px;
  104.     margin-bottom: -6px;
  105. }
  106. .mb-sm {
  107.     margin-bottom: 10px !important;
  108. }
  109.  
  110. <h2 class="word-rotator-title mb-sm">Porto is the <strong>most <span class="word-rotate active" data-plugin-options="{&quot;delay&quot;: 2000, &quot;animDelay&quot;: 300}">
  111.                                 <span class="word-rotate-items" style="width: 138.984px; top: -42px;">
  112.                                     <span>popular</span>
  113.                                     <span>awesome</span>
  114.                                     <span>incredible</span>
  115.                                 <span>popular</span></span>
  116.                             </span></strong> HTML Site template on ThemeForest.</h2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement