Changeset 3497641
- Timestamp:
- 04/02/2026 03:56:51 PM (30 hours ago)
- Location:
- sleek-scroll-video/trunk
- Files:
-
- 2 added
- 4 edited
-
README.md (modified) (1 diff)
-
includes/class-scrollvideo-post-type.php (modified) (1 diff)
-
js/scrollvideo-front.js (modified) (1 diff)
-
media (added)
-
media/logo.png (added)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sleek-scroll-video/trunk/README.md
r3497488 r3497641 1 1 # Sleek Scroll Video 2 2 3 A WordPress plugin that creates scroll-driven video animations with your own JavaScript and CSS (no GSAP).3 A WordPress plugin that creates scroll-driven video animations with your own JavaScript and CSS. 4 4 5 5 ## Features -
sleek-scroll-video/trunk/includes/class-scrollvideo-post-type.php
r3497488 r3497641 32 32 'show_in_menu' => true, 33 33 'menu_position' => 25, 34 'menu_icon' => 'dashicons-video-alt3',34 'menu_icon' => SCROLLVIDEO_PLUGIN_URL . 'media/logo.png', 35 35 'capability_type' => 'post', 36 36 'supports' => array( 'title' ), -
sleek-scroll-video/trunk/js/scrollvideo-front.js
r3497488 r3497641 2 2 'use strict'; 3 3 4 // Custom scroll-to-video logic (no GSAP)4 // Custom scroll-to-video logic 5 5 document.querySelectorAll('.sv-wrapper').forEach(function (wrapper) { 6 6 var video = wrapper.querySelector('video'); -
sleek-scroll-video/trunk/readme.txt
r3497488 r3497641 56 56 = Are assets loaded on every page? = 57 57 58 No. GSAP and the front-end scripts/styles are only enqueued on pages where the `[scrollvideo]` shortcode is present.58 No. Front-end scripts/styles are only enqueued on pages where the `[scrollvideo]` shortcode is present. 59 59 60 60 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.