Нужна помощь

InstantCMS 2.X
#2 26 марта 2019 в 11:43

Как сделать такую вещь у себя на сайте с помощью контент страницы

Alekskrug

В сети есть таблицы цен… можно попробовать прикрутить в исходник страницы или виджет HTML блок
Например вот (первое что попалось):
s-sd.ru/blog_studio_design/adaptivnye_tablicy_cen_na_jquery/
#3 26 марта 2019 в 12:06


Как сделать такую вещь у себя на сайте с помощью контент страницы

Alekskrug

В сети есть таблицы цен… можно попробовать прикрутить в исходник страницы или виджет HTML блок
Например вот (первое что попалось):
s-sd.ru/blog_studio_design/adaptivnye_tablicy_cen_na_jquery/

Rainbow

Вопрос не в этом где найти
Вопрос как правильно добавить html код в текстовой редактор что бы он понял что я от него хочу
То есть отразил правильно Html и Css
#4 26 марта 2019 в 12:26

Вопрос как правильно добавить html код в текстовой редактор что бы он понял что я от него хочу
То есть отразил правильно Html и Css

Alekskrug

Стили добавить в файл css
А код в ИСТОЧНИК (код) редактора (если Redactor, другие могут очищать код)
#5 26 марта 2019 в 12:33
А в чём проблема и что вы от него хотите? Скопируйте код с демо страницы и вставьте в редактор. Подправьте стили, измените ссылки и всё.
#6 26 марта 2019 в 13:09
  1.  
  2. <div class="cd-pricing-container">
  3. <div class="cd-pricing-switcher">
  4. <p class="fieldset">
  5. <input type="radio" name="duration" value="monthly" id="monthly" checked>
  6. <label for="monthly">Monthly</label>
  7. <input type="radio" name="duration" value="yearly" id="yearly">
  8. <label for="yearly">Yearly</label>
  9. <span class="cd-switch"></span>
  10. </p>
  11. </div> <!-- .cd-pricing-switcher -->
  12.  
  13. <ul class="cd-pricing-list">
  14. <li>
  15. <ul class="cd-pricing-wrapper">
  16. <li data-type="monthly" class="is-visible">
  17. <header class="cd-pricing-header">
  18. <h2>Basic</h2>
  19. <div class="cd-price">
  20. <span class="cd-currency">$</span>
  21. <span class="cd-value">30</span>
  22. <span class="cd-duration">mo</span>
  23. </div>
  24. </header> <!-- .cd-pricing-header -->
  25.  
  26. <div class="cd-pricing-body">
  27. <ul class="cd-pricing-features">
  28. <li><em>256MB</em> Memory</li>
  29. <!-- other features here -->
  30. </ul>
  31. </div> <!-- .cd-pricing-body -->
  32.  
  33. <footer class="cd-pricing-footer">
  34. <a class="cd-select" href="https://s-sd.ru">Select</a>
  35. </footer> <!-- .cd-pricing-footer -->
  36. </li>
  37.  
  38. <li data-type="yearly" class="is-hidden">
  39. <!-- pricing table content here -->
  40. </li>
  41. </ul> <!-- .cd-pricing-wrapper -->
  42. </li>
  43.  
  44. <li class="cd-popular">
  45. <ul class="cd-pricing-wrapper">
  46. <li data-type="monthly" class="is-visible">
  47. <!-- pricing table content here -->
  48. </li>
  49.  
  50. <li data-type="yearly" class="is-hidden">
  51. <!-- pricing table content here -->
  52. </li>
  53. </ul>
  54. </li> <!-- .cd-pricing-wrapper -->
  55.  
  56. <li>
  57. <ul class="cd-pricing-wrapper">
  58. <li data-type="monthly" class="is-visible">
  59. <!-- pricing table content here -->
  60. </li>
  61.  
  62. <li data-type="yearly" class="is-hidden">
  63. <!-- pricing table content here -->
  64. </li>
  65. </ul> <!-- .cd-pricing-wrapper -->
  66. </li>
  67. </ul> <!-- .cd-pricing-list -->
  68. </div> <!-- .cd-pricing-container -->
  69.  
  70. <style>
  71. *, *::after, *::before {
  72. -webkit-box-sizing: border-box;
  73. -moz-box-sizing: border-box;
  74. box-sizing: border-box;
  75. }
  76.  
  77. html {
  78. font-size: 62.5%;
  79. }
  80.  
  81. html * {
  82. -webkit-font-smoothing: antialiased;
  83. -moz-osx-font-smoothing: grayscale;
  84. }
  85.  
  86. body {
  87. font-size: 1.6rem;
  88. font-family: "Open Sans", sans-serif;
  89. color: #173d50;
  90. background-color: #173d50;
  91. }
  92.  
  93. a {
  94. color: #e97d68;
  95. text-decoration: none;
  96. }
  97.  
  98. /* --------------------------------
  99.  
  100. Main Components
  101.  
  102. -------------------------------- */
  103. .cd-header {
  104. height: 100px;
  105. line-height: 170px;
  106. position: relative;
  107. }
  108. .cd-header h1 {
  109. text-align: center;
  110. color: #FFFFFF;
  111. font-size: 2.2rem;
  112. }
  113. @media only screen and (min-width: 768px) {
  114. .cd-header {
  115. height: 160px;
  116. line-height: 280px;
  117. }
  118. .cd-header h1 {
  119. font-size: 3.6rem;
  120. font-weight: 300;
  121. }
  122. }
  123.  
  124. .cd-pricing-container {
  125. width: 90%;
  126. max-width: 1170px;
  127. margin: 4em auto;
  128. }
  129. @media only screen and (min-width: 768px) {
  130. .cd-pricing-container {
  131. margin: 6em auto;
  132. }
  133. .cd-pricing-container.cd-full-width {
  134. width: 100%;
  135. max-width: none;
  136. }
  137. }
  138.  
  139. .cd-pricing-list {
  140. margin: 2em 0 0;
  141. }
  142. .cd-pricing-list > li {
  143. position: relative;
  144. margin-bottom: 1em;
  145. background-color: #FFFFFF;
  146. -webkit-backface-visibility: hidden;
  147. backface-visibility: hidden;
  148. /* Firefox bug - 3D CSS transform, jagged edges */
  149. outline: 1px solid transparent;
  150. }
  151. .cd-pricing-list > li::after {
  152. /* subtle gradient layer on the right - to indicate it's possible to scroll */
  153. content: '';
  154. position: absolute;
  155. top: 0;
  156. right: 0;
  157. height: 100%;
  158. width: 50px;
  159. pointer-events: none;
  160. background: -webkit-linear-gradient( right , #FFFFFF, rgba(255, 255, 255, 0));
  161. background: linear-gradient(to left, #FFFFFF, rgba(255, 255, 255, 0));
  162. }
  163. .cd-pricing-list > li.is-ended::after {
  164. /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  165. display: none;
  166. }
  167. @media only screen and (min-width: 768px) {
  168. .cd-pricing-list {
  169. margin: 3em 0 0;
  170. }
  171. .cd-pricing-list:after {
  172. content: "";
  173. display: table;
  174. clear: both;
  175. }
  176. .cd-pricing-list > li {
  177. width: 33.3333333333%;
  178. float: left;
  179. }
  180. .cd-pricing-list > li::before {
  181. /* separator between pricing tables - visible when number of tables > 3 */
  182. content: '';
  183. position: absolute;
  184. z-index: 6;
  185. left: -1px;
  186. top: 50%;
  187. bottom: auto;
  188. -webkit-transform: translateY(-50%);
  189. -moz-transform: translateY(-50%);
  190. -ms-transform: translateY(-50%);
  191. -o-transform: translateY(-50%);
  192. transform
#7 26 марта 2019 в 13:23
Я принципе так и сделал
и вот что вышло
#8 26 марта 2019 в 14:31

Я принципе так и сделал
и вот что вышло

Alekskrug

Как то так:



Пересекается немного со стилями шаблона, поэтому придется поправлять, но все работает… Прикручивал так не однократно...
У Вас стилей не видит…
Вы не можете отвечать в этой теме.
Войдите или зарегистрируйтесь, чтобы писать на форуме.
Используя этот сайт, вы соглашаетесь с тем, что мы используем файлы cookie.