|
|
| Строка 443: |
Строка 443: |
| | </div> | | </div> |
| | </div> | | </div> |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − |
| |
| − | <script>
| |
| − | var coll = document.getElementsByClassName("collapsible");
| |
| − | var i;
| |
| − |
| |
| − | for (i = 0; i < coll.length; i++) {
| |
| − | coll[i].addEventListener("click", function() {
| |
| − | this.classList.toggle("active");
| |
| − | var content = this.nextElementSibling;
| |
| − | if (content.style.maxHeight){
| |
| − | content.style.maxHeight = null;
| |
| − | } else {
| |
| − | content.style.maxHeight = content.scrollHeight + "px";
| |
| − | }
| |
| − | });
| |
| − | }
| |
| − | $(document).ready(function() {
| |
| − | $('.block').on('click', '.extremum-click', function() {
| |
| − | $(this).toggleClass('red').siblings('.extremum-slide').slideToggle(1);
| |
| − | });
| |
| − | });
| |
| − |
| |
| − | function openCity(evt, cityName) {
| |
| − | var i, tabcontent, tablinks;
| |
| − | tabcontent = document.getElementsByClassName("tabcontent");
| |
| − | for (i = 0; i < tabcontent.length; i++) {
| |
| − | tabcontent[i].style.display = "none";
| |
| − | }
| |
| − | tablinks = document.getElementsByClassName("tablinks");
| |
| − | for (i = 0; i < tablinks.length; i++) {
| |
| − | tablinks[i].className = tablinks[i].className.replace(" active", "");
| |
| − | }
| |
| − | document.getElementById(cityName).style.display = "block";
| |
| − | evt.currentTarget.className += " active";
| |
| − | }
| |
| − | </script>
| |
| − | <html>
| |
| − | <head>
| |
| − | <style>
| |
| − |
| |
| − | /* Стиль вкладок */
| |
| − | .tab {
| |
| − | overflow: hidden;
| |
| − | border: 1px solid #ccc;
| |
| − | background-color: #EEEEFF;
| |
| − | }
| |
| − |
| |
| − | /* Стиль кнопок внутри вкладок */
| |
| − | .tab button {
| |
| − | background-color: inherit;
| |
| − | float: left;
| |
| − | border: none;
| |
| − | outline: none;
| |
| − | cursor: pointer;
| |
| − | padding: 14px 16px;
| |
| − | transition: 0.3s;
| |
| − | font-size: 17px;
| |
| − | }
| |
| − |
| |
| − | /* Изменение цвета фона кнопок при наведении курсора мыши */
| |
| − | .tab button:hover {
| |
| − | background-color: #ddd;
| |
| − | }
| |
| − |
| |
| − | /* Создание активного/текущего класса связей вкладок */
| |
| − | .tab button.active {
| |
| − | background-color: #ccc;
| |
| − | }
| |
| − |
| |
| − | /* Стиль содержимого вкладки */
| |
| − | .tabcontent {
| |
| − | display: none;
| |
| − | padding: 6px 12px;
| |
| − | border: 1px solid #ccc;
| |
| − | border-top: none;
| |
| − | }
| |
| − |
| |
| − | /* Стиль содержимого аккордеон */
| |
| − | .collapsible {
| |
| − | background-color: #EEEEFF;
| |
| − | color: black;
| |
| − | cursor: pointer;
| |
| − | padding: 18px;
| |
| − | width: 100%;
| |
| − | border: none;
| |
| − | text-align: left;
| |
| − | outline: none;
| |
| − | font-size: 15px;
| |
| − | }
| |
| − |
| |
| − | .active, .collapsible:hover {
| |
| − | background-color: #EEEEFF;
| |
| − | }
| |
| − |
| |
| − | .collapsible:after {
| |
| − | content: '\002B';
| |
| − | color: black;
| |
| − | font-weight: bold;
| |
| − | float: right;
| |
| − | margin-left: 5px;
| |
| − | }
| |
| − |
| |
| − | .active:after {
| |
| − | content: "\2212";
| |
| − | }
| |
| − |
| |
| − | /* Стиль содержимого таблица */
| |
| − | .content {
| |
| − | padding: 0 18px;
| |
| − | max-height: 0;
| |
| − | overflow: hidden;
| |
| − | transition: max-height 0.2s ease-out;
| |
| − | background-color: white;
| |
| − | }
| |
| − |
| |
| − | .tr,td {
| |
| − | border: 1px solid #ddd;
| |
| − | text-align: center;
| |
| − | padding: 11px;
| |
| − | }
| |
| − |
| |
| − | .th {
| |
| − | border: 1px solid #ddd;
| |
| − | padding-top: 8px;
| |
| − | padding-bottom: 8px;
| |
| − | text-align: center;
| |
| − | background-color: #EEEEFF;
| |
| − | color: black;
| |
| − | }
| |
| − |
| |
| − | </style>
| |
| − | </head>
| |
| − | <body>
| |
| − |
| |
| − | <h1></h1>
| |
| − |
| |
| − | <p>Нажмите на кнопки внутри вкладочного меню:</p>
| |
| − |
| |
| − | <div class="tab">
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_1')">А</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_2')">Б</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_3')">В</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_4')">Г</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_5')">Д</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_6')">Е</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_7')">Ё</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_8')">Ж</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_9')">З</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_10')">И</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_12')">К</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_13')">Л</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_14')">М</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_15')">Н</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_16')">О</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_17')">П</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_18')">Р</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_19')">С</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_20')">Т</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_21')">У</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_22')">Ф</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_23')">Х</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_24')">Ц</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_25')">Ч</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_26')">Ш</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_27')">Щ</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_31')">Э</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_32')">Ю</button>
| |
| − | <button class="tablinks" onclick="openCity(event, 'telsp_33')">Я</button>
| |
| − | </div>
| |
| − |
| |
| − | <div id="telsp_1" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_2" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_3" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_4" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_5" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_6" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_7" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_8" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_9" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_10" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_12" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_13" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_14" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_3" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_15" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_16" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_17" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_18" class="tabcontent">
| |
| − | <h3>Репина Алевтина Валентиновна</h3>
| |
| − | <p>Научно-методический центр «Новая дидактика»</p>
| |
| − | <p>Должность:<strong> Руководитель центра</strong></p>
| |
| − | <p>Телефон: <strong> 8-906-525-20-45</strong></p>
| |
| − | <a href="mailto: ">email: </a>
| |
| − | </div>
| |
| − | <div id="telsp_19" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_20" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_21" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_22" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_23" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_24" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_25" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_26" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_27" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_31" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_32" class="tabcontent">
| |
| − | </div>
| |
| − | <div id="telsp_32" class="tabcontent">
| |
| − | </div>
| |
| − |
| |
| − | <h1>Информация по подразделениям</h1>
| |
| − | <h5></h5>
| |
| − | <button class="collapsible">Ректорат</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия имя отчестово</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="40%"></td>
| |
| − | <td width="40%"></td>
| |
| − | <td width="40%"></td>
| |
| − | <td width="40%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Ректорат</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Учебно-методическое управление</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Управление бухгалтерского учета и финансово-экономического контроля</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Институты университета</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Центр трансфера фармацевтических технологий им. М.В. Дорогова</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Научно-методический центр «Новая дидактика»</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Факультеты университета</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Исторический факультет</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Физико-математический факультет</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − | <button class="collapsible">Естественно-географический факультет</button>
| |
| − | <div class="content">
| |
| − | <div style="overflow-x:auto;">
| |
| − | <table>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <th><strong>Фамилия Имя Отчестово</strong></th>
| |
| − | <th><strong>Должность</strong></th>
| |
| − | <th><strong>Контаткный телефон</strong></th>
| |
| − | <th><strong>Электронная почта</strong></th>
| |
| − | </div>
| |
| − | <div itemprop="eduAccred">
| |
| − | <tr>
| |
| − | <td width="30%"></td>
| |
| − | <td width="30%"></td>
| |
| − | <td width="20%"></td>
| |
| − | <td width="20%"></td>
| |
| − | </tr>
| |
| − | </div>
| |
| − | </table>
| |
| − | </div>
| |
| − | </div>
| |
| − |
| |
| | | | |
| | | | |