Title: Scrollsequence's Replies - page 6 | WordPress.org

---

# Scrollsequence

  [  ](https://wordpress.org/support/users/scrollsequence/)

 *   [Profile](https://wordpress.org/support/users/scrollsequence/)
 *   [Topics Started](https://wordpress.org/support/users/scrollsequence/topics/)
 *   [Replies Created](https://wordpress.org/support/users/scrollsequence/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/scrollsequence/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/scrollsequence/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/scrollsequence/engagements/)
 *   [Favorites](https://wordpress.org/support/users/scrollsequence/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 76 through 90 (of 102 total)

[←](https://wordpress.org/support/users/scrollsequence/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/scrollsequence/replies/?output_format=md)
[2](https://wordpress.org/support/users/scrollsequence/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scrollsequence/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/scrollsequence/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/scrollsequence/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/scrollsequence/replies/page/7/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Play sound file on certain frame of sequence](https://wordpress.org/support/topic/play-sound-file-on-certain-frame-of-sequence/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/play-sound-file-on-certain-frame-of-sequence/#post-14591247)
 * Hi,
 * This is not possible now out of the box as part of the plugin. But because you
   are not the first one to ask for similar functions ie: Play a video after the
   sequence finishes is on our roadmap for future versions.
 * Nevertheless, below is a simple snippet, that listens to the scroll position 
   and once the user scrolls past certain point (100px) it plays the sound.
 *     ```
       // Reference: http://www.html5rocks.com/en/tutorials/speed/animations/
   
       let lastKnownScrollPosition = 0;
       let ticking = false;
       let audio = new Audio('audio_file.mp3');
       let isMusicPlaying=false;
   
       function doSomething(scrollPos) {
         // Here goes the play music logic 
          if (scrollPos > 100 && isMusicPlaying === false){
           audio.play();
           isMusicPlaying = true;
          }
       }
   
       document.addEventListener('scroll', function(e) {
         lastKnownScrollPosition = window.scrollY;
   
         if (!ticking) {
           window.requestAnimationFrame(function() {
             doSomething(lastKnownScrollPosition);
             ticking = false;
           });
   
           ticking = true;
         }
       });
       ```
   
 * I haven’t tested it myself, but the idea is simple – listen for scroll position
   to be bigger than certain value (100), and then play the music.
 * Please let me know if it works for you
 * Ales
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Make scrollsequence not sticky and stop page scrolling](https://wordpress.org/support/topic/make-scrollsequence-not-sticky-and-stop-page-scrolling/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/make-scrollsequence-not-sticky-and-stop-page-scrolling/#post-14591204)
 * Hi Mido,
 * Any success with using the negative margin?
 * Thanks,
 * Ales
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Make scrollsequence not sticky and stop page scrolling](https://wordpress.org/support/topic/make-scrollsequence-not-sticky-and-stop-page-scrolling/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/make-scrollsequence-not-sticky-and-stop-page-scrolling/#post-14552424)
 * Hi Mido,
 * – The scrollsequence needs to be sticky, otherwise the image/video animation 
   would play off screen and won’t be visible to the user.
 * – To overlap the scrollsequence with existing content ie. make the animation “
   in the background” you need to use negative margin.
    See: [https://scrollsequence.com/documentation/#item-3-7](https://scrollsequence.com/documentation/#item-3-7)
 * > `[scrollsequence id=”####”] – Basic shortcode format. #### is the post id.
   > [scrollsequence id=”####” margintop=”-200px”] – 200px overlap on the top (start)
   > of the animation
   > [scrollsequence id=”####” marginbottom=”-200px”] – 200px overlap on the bottom(
   > end) of the animation`
 * With the negative margin setting, you should be able to achieve what you want
   pretty easily.
 * Let me know if this helped!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] WordPress crash on activate](https://wordpress.org/support/topic/wordpress-crash-on-activate/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/wordpress-crash-on-activate/#post-14541827)
 * **Happy Days! **
 * Yes, it would make sense to have that in writing and documentation, will add 
   it.
 * Thanks for cooperation and happy animating!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] WordPress crash on activate](https://wordpress.org/support/topic/wordpress-crash-on-activate/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/wordpress-crash-on-activate/#post-14541177)
 * Hi Mido,
 * CarbonFields is our framework for back end fields (buttons, menus, user interface
   etc). They are basically saying, that mb_convert_case() is missing.
 * I wonder if it’s because the missing “mbstring” module?
 * My suggestion is to activate the optional modules and try again.
 * Fingers crossed!
 * Ales
    -  This reply was modified 4 years, 12 months ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] WordPress crash on activate](https://wordpress.org/support/topic/wordpress-crash-on-activate/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/wordpress-crash-on-activate/#post-14540988)
 * Okay, so I have installed all the plugins I could find on a clean TwentyTwentyOne
   theme (don’t have access to Divi, but I know this theme works fine).
 * After I have activated the following plugins: Akismet, Elementor, Make Column
   Clickable Elementor, Mighty Addons, myStickymenu, PowerPack Lite for Elementor,
   Starter Templates and WP-VideoScroll and then tried to activate and deactivate
   Scrollsequence (FREE version).
 * All worked fine, there are no conflicts from what I can see.
 * Regarding running on Linux server – I have no experience in that, so I cannot
   give any advice on what might be the issue.
 * Few ideas:
 * 1) Have you tried turning WP_debug to true?
    [https://codex.wordpress.org/WP_DEBUG](https://codex.wordpress.org/WP_DEBUG)
   This should give more information when throwing errors. 2) Could you please go
   to wp-admin -> Tools -> Site Health and send me the information from “Status”
   and “Info” tabs? This should give me more idea about the settings that you are
   working with. 3) It would be really beneficial if we could work on the same installation,
   do you have any public server available that we could both access? If not, I 
   have a spare server, but I know that things will be working on there
 * EDIT: 4) Did you have a look in your email? Sometimes is gives a bit more information
   in the admin email
 * Thank you for your input, I hope we will find a solution soon!
 * Ales
    -  This reply was modified 4 years, 12 months ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] WordPress crash on activate](https://wordpress.org/support/topic/wordpress-crash-on-activate/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/wordpress-crash-on-activate/#post-14540821)
 * I suspect there may be a conflict with some of the plugins.
 * Divi theme works fine with Scrollsequence.
    Akismet, Divi, Elementor and Elementor
   PRO are fine and tested too.
 * Try disabling the other ones and activating Scrollsequence again.
 * On my end I will try to recreate your setup, please allow some time for setting
   up.
 * Ales
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [Scrollsequence - Cinematic Scroll Image Animation Plugin] Scrollsequence animation is overlapping with the rest of the content.](https://wordpress.org/support/topic/scrollsequence-animation-is-overlapping-with-the-rest-of-the-content/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years ago](https://wordpress.org/support/topic/scrollsequence-animation-is-overlapping-with-the-rest-of-the-content/#post-14518029)
 * Marking this as resolved. There was a fixed content section in the Theme that
   caused this behavior.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [Scrollsequence - Cinematic Scroll Image Animation Plugin] Scrollsequence animation is overlapping with the rest of the content.](https://wordpress.org/support/topic/scrollsequence-animation-is-overlapping-with-the-rest-of-the-content/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years ago](https://wordpress.org/support/topic/scrollsequence-animation-is-overlapping-with-the-rest-of-the-content/#post-14511337)
 * Hi Theekskate,
 * Sounds like CSS issue or Theme conflict. Could you please send me the URL so 
   I can have a look?
 * If it’s NSFW (looking forward to investigate that type of content LOL!) you can
   send me the link to [info@scrollsequence.com](https://wordpress.org/support/users/scrollsequence/replies/page/6/info@scrollsequence.com?output_format=md)
 * Ales
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Impossible to Publish and no image load in front](https://wordpress.org/support/topic/impossible-to-publish-and-no-image-load-in-front/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years ago](https://wordpress.org/support/topic/impossible-to-publish-and-no-image-load-in-front/#post-14474727)
 * Happy days!
 * Marking as resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Impossible to Publish and no image load in front](https://wordpress.org/support/topic/impossible-to-publish-and-no-image-load-in-front/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years ago](https://wordpress.org/support/topic/impossible-to-publish-and-no-image-load-in-front/#post-14473222)
 * Hi Nicolbc,
 * It seems like you have two scenes. Scene 0 looks okay, but on Scene 1 there is
   a lot of variables that are empty, even though they are required.
 * Impossible to save means, that some of the values that are required (image duration
   etc.) has not been entered.
 * Have a look on Scene 1 – there are required values missing (image duration, start
   and end parameters etc..)
 * Let me know if you have managed to resolve this!
 * Thanks,
 * Ales
    -  This reply was modified 5 years ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Nice concept, but pro version is ridicilously expensive](https://wordpress.org/support/topic/nice-concept-but-pro-version-is-ridicilously-expensive/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/nice-concept-but-pro-version-is-ridicilously-expensive/#post-14374630)
 * Hello Max,
 * Thank you for your feedback. We are glad that you like the concept. Regarding
   your suggestion on the pricing strategy, going cheap was the first option that
   was on the table. Purpose of Scrollsequence is, and always was, to bring this
   technology to the masses, so anyone can be able to achieve such effect on their
   existing website with ease.
 * Scrollsequence is the first plugin on the WP market, that brings this technology
   to the table. It’s a new product for us and the users. Right from the start we
   were getting a lot of support requests asking about it’s general use, even though
   we have a good documentation, examples and how-to video. As a result, to be able
   to support each one of the support requests with the best possible service, there
   was no other option then to raise the price.
 * GSAP is free only for personal use. We are paying yearly subscription to be allowed
   to use it in commercial product.
 * There is a Lifetime Plan for 149.99$ for Scrollsequence PRO if you don’t like
   the subscription model. We need to change the pricing table, because you are 
   not the first person to ask for a one-time payment, even though it’s there 🙂
 * As a thank you for your review, here is one last license available on this 60%
   off coupon KICKSTARTER60 use it on checkout to get a discount, it applies on 
   any plan.
    -  This reply was modified 5 years, 1 month ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
    -  This reply was modified 5 years, 1 month ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Images quality reduced or Low](https://wordpress.org/support/topic/images-quality-reduced-or-low/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/images-quality-reduced-or-low/#post-14354616)
 * Nice!
 * I am closing this topic as resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] Images quality reduced or Low](https://wordpress.org/support/topic/images-quality-reduced-or-low/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/images-quality-reduced-or-low/#post-14350345)
 * Hi,
 * Question 1) Image quality
    I had a look on your animation. One of the images 
   you are using is named “Rocket-5” and it has 1304 x 569 pixels dimension. Because
   you are using “scale to fill” this image is on my Full HD screen stretched to
   larger (~1920×1080) size, and pixelation is visible and hence the poor quality.
 * Try to use larger resolution images if you intend to stretch them across the 
   full screen size..
 * Question 2) Custom width for the images
    Here is a link to documentation for 
   your reference about image sizing: [https://scrollsequence.com/documentation/#section-7](https://scrollsequence.com/documentation/#section-7)
 * In your case, if you want to set a specific width to the image animation, try
   specifying the width on the parent container (or Elementor section)
 * For example:
 *     ```
       <div style="width:600px">
       [scrollsequence id="####]
       </div>
       ```
   
 * This way you are able to control width and position of the animation, in case
   you don’t want to go full screen.
 * Let me know if it works!
 * Ales
    -  This reply was modified 5 years, 1 month ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
    -  This reply was modified 5 years, 1 month ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scrollsequence - Cinematic Scroll Image Animation Plugin] gsap invalid property error](https://wordpress.org/support/topic/gsap-invalid-property-error/)
 *  Plugin Author [Scrollsequence](https://wordpress.org/support/users/scrollsequence/)
 * (@scrollsequence)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/gsap-invalid-property-error/#post-14328842)
 * Okay, I can see that warning now. It has no effect on the user or performance.
   This warning will be removed in the next version.
 * If you want to get rid of it now, you can add following code at the end of line
   674 in “ssq-lib__premium_only.js”
 * `ssqCur.image=0;`
 * Root cause was that a variable that was not set, but it should have been, to 
   prevent the warning.
 * I will close this as resolved because the warning does not cause any issues as
   far as I know and won’t be displayed in the next versions.
 *  For me the warning was not important, so I left it there, but ideally things
   like that should not happen. Thank you very much for pointing things out and 
   helping us to make the code better!
 * 😎
 * Ales
    -  This reply was modified 5 years, 1 month ago by [Scrollsequence](https://wordpress.org/support/users/scrollsequence/).

Viewing 15 replies - 76 through 90 (of 102 total)

[←](https://wordpress.org/support/users/scrollsequence/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/scrollsequence/replies/?output_format=md)
[2](https://wordpress.org/support/users/scrollsequence/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scrollsequence/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/scrollsequence/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/scrollsequence/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/scrollsequence/replies/page/7/?output_format=md)