Skip to content
View in the app

A better way to browse. Learn more.

IPBMafia.ru - поддержка Invision Community, релизы, темы, плагины и приложения

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Kolya_Barakov

Пользователи
  • Регистрация

  • В сети

Reputation Activity

  1. Like
    Kolya_Barakov got a reaction from ryancoolround in ошибка   
    ошибка там конкретно со временем, там оно отображается другое и не раскрывается. Как можно очистить список правил кроме как через этот раздел в АЦ? 
  2. Like
    Kolya_Barakov got a reaction from ryancoolround in форма для заполнения   
    Подскажите, пожалуйста, как сделать похожую форму для заполнения чего-либо?

  3. Confused
    Kolya_Barakov got a reaction from ryancoolround in Nexxe Theme (Dark/Light)   
    Область написания текста слишком тёмная, почти невозможно работать. В настройках темы это не меняется

  4. Haha
    Kolya_Barakov got a reaction from ryancoolround in Nexxe Theme (Dark/Light)   
    Слишком темно, сделайте немного светлей. особенно где сама тема, её содержание. почти невозможно так
  5. Like
    Kolya_Barakov got a reaction from ryancoolround in ошибка   
    Да. Но там время сайта, и эта проблема с самого начала.

     
     
    Да. Мне нужна возможность отключения отображения этого
  6. Like
    Kolya_Barakov got a reaction from ryancoolround in версия   
    Как адаптировать старую тему под новую версию?
    Мне она не принадлежит 
  7. Like
    Kolya_Barakov got a reaction from ryancoolround in ошибка   
    Что делать, если в отделе "Правила" отображается это - [[Template core/admin/achievements/rulesListRows is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]?
    Версия 4.7.9
     
    также вопрос: возможно ли убрать этот же текст внизу на форуме? Мешает. Версии темы для новой версии нет, поэтому приходится...
  8. Like
    Если вы хотите получить только анимированный эффект радуги, выполните следующие действия.
    Перейдите в ACP > Внешний вид > Темы > Ваша тема > Редактировать HTML и CSS > вкладка CSS > Пользовательский > custom.css.
    Вставьте следующий код в шаблон «custom.css».
    .rainbow_text_animated { background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); -webkit-background-clip: text; background-clip: text; color: transparent; animation: rainbow_animation 6s ease-in-out infinite; background-size: 400% 100%; } @keyframes rainbow_animation { 0%,100% { background-position: 0 0; } 50% { background-position: 100% 0; } } Сохраните шаблон и перейдите в Пользователи > Группы > Изменить группу.
    В поле «Формат префикса» вставьте
    <span class="rainbow_text_animated"> а во втором поле рядом с ним конечный тег, т.е.:
    </span>
     
    Если вы хотите получить градиентный текст с эффектом радуги и анимированную иконку (Font Awesome) перед именем пользователя, добавьте следующий код в custom.css под кодом для радуги, чтобы анимировать иконку короны:
    .magic { animation: magic 3s infinite; } @keyframes magic { 0% { transform: scale(1); } 10% { transform: scale(0.9) rotate(-6deg); } 30%, 50%, 70% { transform: scale(1.15) rotate(6deg); } 40%, 60% { transform: scale(1.15) rotate(-6deg); } 80%, 100% { transform: scale(1) rotate(0); } } Сохраните шаблон и перейдите в Пользователи > Группы > Изменить группу.
    В поле «Префикс формата» замените код следующим:
    <span class="rainbow_text_animated"><i style="color:red;" class="fas fa-crown faa-tada animated magic" aria-hidden="true"></i> Код будет работать в шаблоне, использующем версию 5 Font Awesome, которая принадлежит вам.
    По умолчанию в шаблоне IPS по-прежнему реализована версия 4.7, которая не имеет в своей коллекции значка короны. Если кто-то использует шаблон с версией 4.7, он должен изменить иконку и класс на другой:
    <span class="rainbow_text_animated"><i class="fa fa-shield magic" style="color:red;" aria-hidden="true"></i> Как видите, я изменил значок на «щит», потому что в FA 4.7 он кажется наиболее подходящим для группы «Владелец» или «Администратор».
    Окончательный результат:

    Вы также можете добавить к иконке/тексту эффект свечения (текст-тень) или мигающие сверкающие звезды... возможностей масса 😉
    English
     
     
    If you only want an animated rainbow effect, follow these steps.
    Go to ACP > Appearance > Themes > Your Theme > Edit HTML & CSS > CSS tab > Custom > custom.css.
    Paste the following code into the "custom.css" template.
    .rainbow_text_animated { background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); -webkit-background-clip: text; background-clip: text; color: transparent; animation: rainbow_animation 6s ease-in-out infinite; background-size: 400% 100%; } @keyframes rainbow_animation { 0%,100% { background-position: 0 0; } 50% { background-position: 100% 0; } }  
     
    Save the template and go to Users > Groups > Edit group.
    In the "Format prefix" field, paste
    <span class="rainbow_text_animated"> and in the second field next to it, the ending tag, i.e.:
    </span>
     
    If you want to get a gradient text with a rainbow effect and an animated icon (Font Awesome) in front of the username, add the following code to the custom.css under the code for the rainbow to animate the crown icon:
    .magic { animation: magic 3s infinite; } @keyframes magic { 0% { transform: scale(1); } 10% { transform: scale(0.9) rotate(-6deg); } 30%, 50%, 70% { transform: scale(1.15) rotate(6deg); } 40%, 60% { transform: scale(1.15) rotate(-6deg); } 80%, 100% { transform: scale(1) rotate(0); } } Save the template and go to Users > Groups > Edit group.
    In the "Format prefix" field, replace the code with the following:
    <span class="rainbow_text_animated"><i style="color:red;" class="fas fa-crown faa-tada animated magic" aria-hidden="true"></i> The code will work in a template that uses Font Awesome version 5, which is yours.
    By default, version 4.7 is still implemented in the IPS template, which does not have a crown icon in its collection. If someone uses the template with version 4.7, he must change the icon and class to another:
    <span class="rainbow_text_animated"><i class="fa fa-shield magic" style="color:red;" aria-hidden="true"></i>  
    As you can see I changed the icon to "shield", because in FA 4.7 it seems to be the most suitable icon for the group "Owner" or "Administrator".
    The final result:

    You can also add a glow effect (text-shadow) or blinking sparkling stars to the icon/text... there are plenty of possibilities 😉
    Credit to SeNioR
  9. Like
    Kolya_Barakov got a reaction from ryancoolround in ник   
    Дайте, пожалуйста, подробную инструкцию, как сделать цвет группы переливающимся?
  10. Thanks
    Kolya_Barakov reacted to aLEX49566 in Главная страница   
  11. Like
    Kolya_Barakov got a reaction from aLEX49566 in Смена цветов групп пользователей   
    Cпасибо огромное!
  12. Like
    Пользуйтесь на здоровье, важно не закрывать коды <span иначе код не сработает
    Протестированы на все версии IPS ошибки не наблюдается!
  13. Like
    тут тем этих полно. Наберите в поиске «красивые ники»
  14. Like
    Kolya_Barakov got a reaction from ryancoolround in Скачать обновление   
    Где её увидеть? Честно, не знаю. Версия самого форума 4.6.12 если это что-то да даст

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.