File size: 6,043 Bytes
44597da c63e0f0 1079d7c 49b90ac f6b8a28 49b90ac f6b8a28 49b90ac f6b8a28 49b90ac c63e0f0 1079d7c 49b90ac f6b8a28 49b90ac 44597da 80e59ed c63e0f0 49b90ac c63e0f0 1079d7c c63e0f0 44597da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GrapesJS with Forms Plugin</title>
<link rel="stylesheet" href="https://unpkg.com/grapesjs/dist/css/grapes.min.css">
<script src="https://unpkg.com/grapesjs"></script>
<script src="https://unpkg.com/grapesjs-plugin-forms"></script>
<script src="https://unpkg.com/grapesjs-custom-code"></script>
<style>
/* Ваш существующий CSS */
body, html {
height: 100%;
margin: 0;
}
.image-container {
display: flex;
justify-content: space-between;
margin-top: 20px; /* Поднятие картинок выше формы */
}
.image-container img {
width: 30%;
height: auto;
margin: 0 10px; /* Увеличение расстояния между картинками */
}
@media (max-width: 768px) {
.image-container {
flex-direction: column;
}
.image-container img {
width: 100%;
margin: 10px 0; /* Увеличение расстояния между картинками на мобильных устройствах */
}
}
</style>
</head>
<body>
<div id="gjs" style="height:0px; overflow:hidden;">
<!-- Ваш существующий HTML контент -->
<div class="panel">
<h1 class="welcome">Добро пожаловать!</h1>
<div class="big-title">
<img class="logo" src="https://via.placeholder.com/70x70.png?text=Logo" alt="Logo">
<span>Конструктор лендингов и подписных ВК</span>
</div>
<div class="description">
В связке с WhatsMasterCRM.
</div>
<form class="centered-form">
<input type="text" name="name" placeholder="Имя">
<input type="email" name="email" placeholder="Email">
<input type="tel" name="phone" placeholder="Телефон">
<label class="checkbox-label"><input type="checkbox" name="subscribe" autocomplete="off"> I agree to the newsletter</label>
</form>
<button class="add-button">Зарегистрироваться</button>
<div class="image-container">
<img src="https://via.placeholder.com/150" alt="Placeholder Image 1">
<img src="https://via.placeholder.com/150" alt="Placeholder Image 2">
<img src="https://via.placeholder.com/150" alt="Placeholder Image 3">
</div>
</div>
<style>
.panel {
width: 90%;
max-width: 700px;
border-radius: 3px;
padding: 30px 20px;
margin: 150px auto 0px;
background-color: #d983a6;
box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.25);
color: rgba(255,255,255,0.75);
font: caption;
font-weight: 100;
text-align: center;
}
.welcome {
text-align: center;
font-weight: 100;
margin: 0px;
}
.logo {
width: 70px;
height: 70px;
vertical-align: middle;
border-radius: 50%; /* Скругление углов для логотипа */
}
.big-title {
text-align: center;
font-size: 3.5rem;
margin: 15px 0;
}
.description {
text-align: justify;
font-size: 1rem;
line-height: 1.5rem;
}
.centered-form {
display: inline-block;
text-align: left;
}
.centered-form input {
display: block;
width: 100%;
margin-bottom: 10px;
}
.checkbox-label {
display: flex;
align-items: center;
margin-bottom: 10px;
padding: 0;
}
.checkbox-label input[type="checkbox"] {
margin: 0;
width: 100%;
height: 100%;
flex-basis: 0;
autocomplete: off;
}
.checkbox-label span {
margin-left: 15px; /* Добавление отступа справа */
}
.add-button {
display: block;
margin: 20px auto 0;
padding: 10px 20px;
font-size: 1rem;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</div>
<!-- Интерфейс для выбора скриптов -->
<div>
<label><input type="checkbox" id="script1-checkbox" value="https://example.com/your-additional-script1.js"> Script 1</label>
<label><input type="checkbox" id="script2-checkbox" value="https://example.com/your-additional-script2.js"> Script 2</label>
<label><input type="checkbox" id="script3-checkbox" value="https://example.com/your-additional-script3.js"> Script 3</label>
</div>
<!-- Кнопка для экспорта HTML -->
<button id="export-html">Export HTML</button>
<script type="text/javascript">
var editor = grapesjs.init({
showOffsets: 1,
noticeOnUnload: 0,
container: '#gjs',
height: '100%',
fromElement: true,
storageManager: { autoload: 0 },
plugins: ['grapesjs-plugin-forms', 'grapesjs-custom-code'],
pluginsOpts: {
'grapesjs-plugin-forms': {
// options
},
'grapesjs-custom-code': {
blockCustomCode: {
label: 'Custom Code',
category: 'Extra',
attributes: { class: 'fa fa-code' }
},
modalTitle: 'Insert your code',
buttonLabel: 'Save',
placeholderScript: '// Your JavaScript code here', // Плейсхолдер для скрипта
codeViewOptions: {
theme: 'hopscotch',
readOnly: 0
}
}
}
});
// Обработчик для кнопки экспорта
document.getElementById('export-html').addEventListener('click', exportHtml);
</script>
<!-- Вынесенная функция экспорта -->
<script type="text/javascript" src="https://huggingface.co/spaces/DMTuit/psy_vk/resolve/main/js/sav_html.js"></script>
</body>
</html> |