Описание
WP Swiper Gutenberg Block is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. This powerful plugin is designed to be used in mobile websites, mobile web apps, and mobile native/hybrid apps, providing you with a range of features and customization options to help you create stunning slideshows, image galleries, and more.
Функции:
- Use any block available in Gutenberg to create your slider
- Hardware accelerated transitions for fast and smooth animations
- Customize every aspect of your slider, including navigation and pagination options, autoplay settings, and more
- Mobile-first design ensures your sliders look great on any device
- Multiple slide layouts to choose from, including horizontal and vertical options
- Dynamic content support, including support for video slides and dynamic image sources
- Easy to use and beginner-friendly, with a user-friendly interface and intuitive controls
- Built with performance in mind, ensuring your sliders load quickly and efficiently
WP Swiper Gutenberg Block is the ultimate tool for creating visually stunning displays on mobile devices. Whether you’re creating a mobile website, mobile web app, or mobile native/hybrid app, WP Swiper Gutenberg Block has everything you need to create beautiful and engaging slideshows, image galleries, and more.
Download WP Swiper Gutenberg Block today and take your mobile displays to the next level!
Support my work and fuel my creativity by buying me a virtual coffee on BuyMeACoffee
New Features and suggestions Contact Me
NEW RELEASE
WP Swiper version 1.2.0 is now live! This update introduces major changes, including a streamlined configuration with the new data-swiper attribute, a new WP Swiper Settings page, optimized asset loading, and more. Please note that the legacy configuration method will be deprecated in future releases.
For more details on what’s new and how to migrate, check out the full update announcement on the WP Swiper Blog.
wpswiper_frontend_js_register_args
Filter
The wpswiper_frontend_js_register_args
filter allows users to customize parameters when enqueueing the frontend-js
script. This filter enables you to modify the script’s dependencies, control whether it loads in the footer, and specify additional loading strategies such as async
or defer
.
Parameters
-
deps
: (array) The script dependencies forfrontend-js
. Default value is['wpswiper-bundle']
. You can modify this to include additional dependencies or remove existing ones. -
args
: (array|bool) An optional array for additional script loading strategies. If provided, it may be an array with astrategy
key (set to either'async'
or'defer'
). If not specified, it defaults tofalse
, indicating that no special loading strategy is applied.
For more information, read the WordPress documentation on wp_enqueue_script.
Example Usage
To modify the default values, add the following code to your functions.php
file or your custom plugin:
add_filter('wpswiper_frontend_js_register_args', function($args) {
// Modify script dependencies
$args['deps'] = ['wpswiper-bundle', 'jquery', 'your-custom-dependency'];
// Specify an additional loading strategy, such as async or defer
$args['args'] = ['in_footer' => false, 'strategy' => 'defer']; // Options: 'async' or 'defer'
return $args;
});
This filter provides flexibility in how the frontend-js
script is loaded, allowing for optimizations tailored to your specific site needs.
!!! ВАЖНО !!!
Я использую этот плагин для создания потрясающих слайдеров. На данный момент доступны только основные опции Swiper. Еще не все!!!
Если вам срочно нужна функция, пожалуйста, свяжитесь со мной.
Если вы дизайнер и хотите предложить дизайн интерфейса, дайте мне знать.
Пользовательский интерфейс бэкэнда на данный момент не самый красивый. Но зато интуитивно понятный и выполняет свою задачу! Интерфейс настроен как ряд вкладок, каждая вкладка управляет слайдом. Нажмите на вкладку, и вы можете загрузить изображение. Нажмите на блок WP Swiper, и вы сможете управлять наложением слайдера + наложением цвета.
Еще одно замечание по поводу пользовательского интерфейса бэкенда. Первоначальная идея заключалась в создании функционального слайдера в редакторе. Но есть проблема с конкурирующими элементами HTML. Я разместил проблему в официальном репозитории swiper github для их решения. Оставьте комментарий для них, чтобы расставить приоритеты в решении.
Если вы хотите использовать слайд с текстом.
Выберите слайд, добавьте изображение, изображение появится в качестве фона в интерфейсе.
Если вы хотите использовать слайдер для изображений, просто добавьте обычный блок изображения.
Функции:
- Добавить наложение изображения для всего слайдера + управление непрозрачностью
- Добавить наложение цвета для всего слайдера + контроль прозрачности
- Добавить изображение в слайдер
- Добавьте содержимое (текст, заголовки, что угодно…) в слайдер
- Позиция содержимого для каждого слайдера
Дополнительные функции, которые будут добавлены:
- Контроль высоты слайдера
- Анимации
- Другие функции из официальной документации swiper
Скриншоты
Установка
Установить WP Swiper очень просто: перейдите в панель администратора WordPress и нажмите «Плагины» > Добавить новый, ищите «WP Swiper».
Кроме того, вы можете установить плагин вручную, загрузив его с сайта wordpress.org/plugins.
1. Загрузите всю папку WP Swiper в каталог /wp-content/plugins/.
2. Активируйте плагин через меню «Плагины» в WordPress.
3. Настройте плагин из меню, выбрав WP Swiper на боковой панели.
Отзывы
Участники и разработчики
«WP Swiper» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:
УчастникиПеревести «WP Swiper» на ваш язык.
Заинтересованы в разработке?
Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.
Журнал изменений
1.2.13
- script id rename from wpswiper-bundle-js-js to wpswiper-bundle-js
1.2.12
- Added support for additional script loading strategies, allowing users to modify dependencies (deps), specify whether the script loads in the footer (in_footer), and set async or defer loading options through a new filter when enqueueing frontend-js.
1.2.11
- Cleanup debug logs
1.2.10
- Further improvments to swiper block detection within content. Applicable for conditional bundle loading.
1.2.9
- Improve swiper block detection within content. Applicable for conditional bundle loading.
1.2.8
- Fix null reference bug for post_content
1.2.7
- Added debug setting to the settings page that outputs debug info to the frontend
1.2.6
- Added a debugging tool that allows users to reset slide slugs for each slide, ensuring proper synchronization with slide data in the parent block.
1.2.5
- Fix breakpoints
1.2.4
- Fix legacy code toggle
1.2.3
- fixed condition on swiper load
1.2.2
- Fixed breakpoints bug
1.2.1
- Missing files
1.2.0
- Enhanced Swiper Configuration: Swiper settings are now loaded through a single HTML element attribute (
data-swiper
), simplifying the previous method that relied on multipledata
attributes. - Deprecation Warning: The legacy method of using multiple data-attributes will remain functional but is scheduled for deprecation in future releases. Please note that this legacy mode only works for manually updated data-attributes—updates made via Gutenberg will not affect these attributes. If you prefer to keep using the old method, do not upgrade to version 1.2.0 and continue using version 1.1.3, which is still available for download. You can also enable the old WP Swiper script (which will no longer receive updates) via Settings > WP Swiper.
- Swiper Bundle Update: Upgraded Swiper to version v11.1.14 for improved performance and features.
- New Settings Page: A dedicated WP Swiper Settings page is now available under Settings > WP Swiper for easy management and configuration.
- Optimized Asset Loading: Swiper assets (JS and CSS) are now loaded only on pages that utilize Swiper, improving site performance. To revert to the previous behavior (loading Swiper assets on every page), you can adjust this in Settings > WP Swiper.
1.1.13
- Fixed issue where thumbnails were not updating unless the page was refreshed and resaved.
- Resolved problem where typing after adding a new slide caused the first slide to be selected.
- Removed duplicate attribute state update.
1.1.12
- Thumbs were not updating, unless you refresh and resave
1.1.11
- Add pauseOnMouseEnter
1.1.10
- Duplicate slide bug
1.1.9
- Resolve conflict with disableOnInteraction true when autoplay false
1.1.8
- Fix shared options on multiple sliders
1.1.7
- Multiple Sliders next/prev buttons bug Fixed
- Added disableOnInteraction for autoplay
1.1.6
- Thumbs bug
1.1.5
- Revert: 1.1.4 as it breaks sites with custom swipers
1.1.4
- Load assets only if block used
1.1.3
- Fixed slides per view not allowing auto
1.1.2
- Support custom thumbs, and if no custom thumb is provided, use the content of the current slide.
1.1.1
- Added ability to remove Custom Slide Navigation Icons
- Prev/Next slide buttons wrapped in a div + container
1.1.0
- This was a big refactor, so bugs are expected, reach out to me with any issues
- Refactor Class Based components to functional components
- Fix slide reordering bug within the Document Overview (Left Sidebar)
- Added support for Custom Thumbnails
- Added support for Custom Slide Navigation Icons
- Added 2 new slider styles (More details on Digital Apps Blog)
1.0.34
- Add focal point controls to the image
1.0.33
- no lodash
- php 8.2 support
1.0.32
- Slide Image as cover
1.0.31
- Fix Vertical Orientation
- Bundle Updated
1.0.30
- Auto Height Fix
- Add Direction Option (Horizontal, Vertical)
- Sliders per view fix auto
1.0.29
- Enable sticky mode
- Introduce debugging tool
1.0.28
- Fix free mode feature
- Add bundle versioning
1.0.27
- allow classes to be set from the editor
1.0.26
- rename align classes
1.0.25
- Fix align full, align wide
1.0.24
- Added auto height and cross fade true when effect is set to fade
1.0.23
- Added ability to enable Thumbs
1.0.22
- Add ability to reorder slides by drag and drop via List View
1.0.21
- Обновленный пакет Swiper
1.0.20
- Удален jQuery как зависимость
- Ошибка bullet type
- Ошибка стилей слайдера
- Обновленный пакет Swiper
1.0.19
- Ошибка автовоспроизведения
- Ошибка настроек с целыми числами
1.0.18
- Ошибка breakpoints
1.0.17
- Добавлена поддержка адаптивных точек останова.
1.0.16
- Если разбиение на страницы слайдера не включено, явно установите для него значение false, чтобы избежать побочных эффектов.
1.0.15
- Слайды на просмотр могут быть автоматическими
1.0.14
- Исправить ошибку валидации блока
1.0.13
- Исправить вертикальное выравнивание
- Удалить слайдер навигации SVGs
- Устаревшие элементы управления горизонтального выравнивания
1.0.13
- Внедрить элемент управления MatrixAlign
- Исправить таймер задержки
1.0.12
Исправлена ошибка с отпусканием по краям, и события колесика мыши всегда имели значение true.
1.0.11
- Добавлена кликабельная пагинация
1.0.10
- Добавлен тип пагинации
1.0.9
- Восстановить Mouse Wheel и поддержку RoE
1.0.8
- Избегайте ошибки проверки блока, ломающей блок
1.0.7
- Добавлена поддержка Mouse Wheel
- Добавлена поддержка релизов по краям
1.0.6
- Добавлена ширина контейнера