Plugin Directory

Changeset 3497641


Ignore:
Timestamp:
04/02/2026 03:56:51 PM (30 hours ago)
Author:
miguifer
Message:

Logo 1.0.0

Location:
sleek-scroll-video/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • sleek-scroll-video/trunk/README.md

    r3497488 r3497641  
    11# Sleek Scroll Video
    22
    3 A WordPress plugin that creates scroll-driven video animations with your own JavaScript and CSS (no GSAP).
     3A WordPress plugin that creates scroll-driven video animations with your own JavaScript and CSS.
    44
    55## Features
  • sleek-scroll-video/trunk/includes/class-scrollvideo-post-type.php

    r3497488 r3497641  
    3232            'show_in_menu'        => true,
    3333            'menu_position'       => 25,
    34             'menu_icon'           => 'dashicons-video-alt3',
     34            'menu_icon'           => SCROLLVIDEO_PLUGIN_URL . 'media/logo.png',
    3535            'capability_type'     => 'post',
    3636            'supports'            => array( 'title' ),
  • sleek-scroll-video/trunk/js/scrollvideo-front.js

    r3497488 r3497641  
    22    'use strict';
    33
    4     // Custom scroll-to-video logic (no GSAP)
     4    // Custom scroll-to-video logic
    55    document.querySelectorAll('.sv-wrapper').forEach(function (wrapper) {
    66        var video = wrapper.querySelector('video');
  • sleek-scroll-video/trunk/readme.txt

    r3497488 r3497641  
    5656= Are assets loaded on every page? =
    5757
    58 No. GSAP and the front-end scripts/styles are only enqueued on pages where the `[scrollvideo]` shortcode is present.
     58No. Front-end scripts/styles are only enqueued on pages where the `[scrollvideo]` shortcode is present.
    5959
    6060== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.