Some feedback from the lovely folk at my forum
-
That's a css style in vanilla.
.fade-out { position: absolute; top: 190px; left: 0; width: 100%; margin: 0; padding: 30px 0; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, transparent),color-stop(1, white)); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white); background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white); background-image: -ms-linear-gradient(top, transparent, white); background-image: -o-linear-gradient(top, transparent, white); }
Just change the white to your desired background color. In your case I think it is
#2b2b2b
I think.
.lights-out .fade-out { background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, transparent),color-stop(1, #2b2b2b)); background-image: -webkit-linear-gradient(top, rgba(43, 43, 43, 0), #2b2b2b); background-image: -moz-linear-gradient(top, rgba(43, 43, 43, 0), #2b2b2b); background-image: -ms-linear-gradient(top, transparent, #2b2b2b); background-image: -o-linear-gradient(top, transparent, #2b2b2b); }
Should work, adjust if you want a different color.
-
haha nice, @baris fixing my derp for me
-
Back with another one or two, there's a noticeable delay between pages loading now, happens here and on my place, also the fade out and back in of pages feels like " wading through quicksand", I'm inclined to agree, waiting for a page to fade out when you've clicked somewhere else is a bit silly, would a better option not be wait until the next page is ready and just snap between them? Or is this done because of a limitation?
-
Will defer to @psychobunny for an in-depth reply, but the fade-out is only happening because NodeBB needs to fetch the data and parse the template. If all that is done before the fadeout is finished, then we'll stop it immediately and start the fade-in with the new content.
There might be a 100ms delay, mostly because wanted to avoid this:
- Content starts fading out
- While it's at 50% opacity, the new content appears, and user gets to watch the new content fade out
- New content fades in
#toofastproblems
-
-
I know we added an extra delay because the pages were loading too fast... over here at least. Maybe that's what is slowing you guys down?
-
@psychobunny It's kind of like the delay happens after the page fades out, rather than during for me.
-
@a_5mith Keep in mind that every plugin you install takes time to parse their portion of the post.
So if you're loading a thread with lots of soundcloud embeds, that might take a long time depending on how slow the soundcloud API is.
Best practice is to cache those API calls, so repeated calls load from cache instead of making that network call to the soundcloud API again. I do this with GitHub plugin, which explains why sometimes after a bug is closed, the referenced bug is still listed as "open" in the embed here
-
Clear your cache here, does it seem a bit better for you now?
-
@psychobunny It's absolutely perfect on Canary (Chrome), but Firefox still has a mild delay between the page fading out and the other page fading back in again.
-
Yeah I see the same thing you do. I need to rework how ajaxify happens, @julian was mentioning a cross-fade, but I'm not sure if it would look good or would look like one of those corny wedding home videos kinda thing
-
@psychobunny While we're discussing the fading, is there a way to turn it off? It's nice an all but I would like to turn it off for a forum I'm working on.
-
I think putting the following in customCSS will stop the fade in out
.ajaxifying { -moz-opacity: 1.00; opacity: 1.00; -ms-filter:~"progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; }
You can modify the vanilla theme to completely remove the transition as well, not sure which one is better. https://github.com/NodeBB/nodebb-theme-vanilla/blob/master/less/style.less#L78
-
@baris Bloody ell that's made my forum quick. I think it may be firefox struggling to transition the opacity in a smooth motion. It still fades in slightly, but it's instant and the page load is definitely snappier. I'm scared to try this in Canary.
Yep, 10/10, would recommend.
-
Interesting.
If everything is up to par (API vs rendering speed) I just feel that the instasnap between pages is a little bit too artificial (feels like clicking between an #anchor, if you know what I mean)
I read somewhere that NodeBB apparently uses the opacity transition animation to fake our loading speed, but the truth is, we did it so that it slows it down a bit to make it not feel so weird
-
@psychobunny I definitely could see how the instantaneous loading would feel weird, but I actually find it awesome that things load that quickly in NodeBB.
-
We spent some time today working on the transition feel... bumped up the speed a bit and reduced the artificial delay. More importantly got rid of that annoying flicker that would sometimes happen
-
@psychobunny All we need now is to include my one homepage change to include the topic title above the post content and I'll be able to pull latest lavender again.