Read the statement by Michael Teeuw here.
Delete Fade In/Fade Out animation in the NewsFeed Module
-
@sdetweil
I changed the animationSpeed: value to 0, and it still does the Fade In/Fade Out animation.
Nothing has changed. What I would like is to remove the animation and leave the text fixed.
Thanks. -
@victorjim said in Delete Fade In/Fade Out animation in the NewsFeed Module:
I changed the animationSpeed: value to 0, and it still does the Fade In/Fade Out animation.
did you MOVE the animationSpeed:0, INSIDE the config:{} section of the module definition??
otherwise the module will not see that setting
-
I don’t understand well, I have changed the variable animationSpeed: 0 in the config.js file inside the /MagicMirror/config/ folder
Like this code:
modules: [ { module: "newsfeed", position: "top_bar", reloadInterval: 60000, animationSpeed: 0, // In this position config: { feeds: [ { title: "Portada Periodico de Aragon", url: "https://www.elperiodicodearagon.com/rss/section/23500" } ], showSourceTitle: true, showPublishDate: true, showDescription: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } },
-
@sdetweil said in Delete Fade In/Fade Out animation in the NewsFeed Module:
in a prior post I said
those two properties are for the module, not MagicMirror, so they should be inside the config:{ section, here is the doc for module parameters for MagicMirror,
so
{ module: "newsfeed", position: "top_bar", // move These TWO parameters reloadInterval: 60000, animationSpeed: 0, // INSIDE the config:{ section config: { feeds: [ { title: "Portada Periodico de Aragon", url: "https://www.elperiodicodearagon.com/rss/section/23500" } ], showSourceTitle: true, showPublishDate: true, showDescription: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true, // like this reloadInterval: 60000, animationSpeed: 0 } },
module: …to config: { belong to MagicMirror, NOT the module
config: {… } belong to the module -
Ok
Now I understand.
The 2 variables must be set in the configuration of each news.
Now it is corrected and works.
Thank you very much.