[nodebb-plugin-spoilers] Spoiler text in posts
-
@Tanner I've attached all the CSS code I've used to achieve this, I've outlined what I've done too.
- Decreased the width of the spoiler when it's collapsed so you don't accidentally trigger it while scrolling down a page
- Spoiler is a fixed height until hovered inside the "spoiler zone"then it expands. iPad and Mobile require a click on the left border.
See it in action here: http://35hz.co.uk/topic/1941/reintroducing-spoiler-tags
And the code:
blockquote.spoiler { background: none repeat scroll 0 0 #fefefe; border-left-color: red; overflow: hidden; width:10%; max-height:40px; -webkit-transition: max-height .8s linear; -moz-transition: max-height .8s linear; transition: max-height .8s linear; } blockquote.spoiler:hover { background: none repeat scroll 0 0 #fefefe; border-left-color: red; width:100%; max-height:inherit!important; width:inherit!important; transition-delay:1.1s; -webkit-transition: max-height .8s linear; -moz-transition: max-height .8s linear; transition: max-height .8s linear; }
Change colours as required.
color:#000
would set the text to black instead of orangey. -
@pwFoo hover is implemented on mobiles as the first click. Android will usually show the hover whilst the page is loading, because important info shouldnt be hidden in on:hover events, iOS do it differently, iOS count a hover event as one tap, then make you tap again to access the page.
I will look into this later, see what can be done through CSS.
-
It's really nice. Does the image load via ajax?
It would be nice to have something like this just to deal with large images. Some forum pages you go to, people have posted a million giant images and you can sit there for an hour while the page loads. If you're on mobile, forget about it.
Either completely hide the image and load via ajax. OR show a thumbnail and then load via ajax over hover or click.
Just a thought, probably for another plugin.
-
@art some sort of lazy loading library would be good for this, I'm currently working on lazy loading all the media on my site via different libraries, as I'm not skilled in rolling my own.
So far I've got YouTube videos done, but still working on soundcloud, mixcloud, hearthis.at, webm files and normal images/gifs.
-
@psychobunny said:
0.0.3 - updated to add a button in composer to add spoiler text.
my icon disappeared recently
-
@glitch said:
! test
I don't think I understand how this is supposed to work. To me, spoiler text means text that is hidden without action taken. If that's what this plugin is supposed to do, could I please be told the correct way to do it?
Plugin isn't installed here.
-
Seems like the plugin is broken on NodeBB 0.6.0
As stated here by @Ted
https://github.com/psychobunny/nodebb-plugin-spoilers/issues/3 -
haha derp. You know its bad when I get three PR's doing roughly the same thing. Anyways merged and published, thanks guys
-
@psychobunny I should have a plugin conflict because it doensn't seems to be solved on my board (plugin updated)
-
Does the plugin still work in a recent nodebb installation?
If yes, do multiline spoilers generally work?
I am getting exclamation marks at the start of a line after an empty line has been used in the spoiler text. It seems that the parsing somehow won't work correctly.