<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-newsfeedtouch - News so hot you wanna touch it]]></title><description><![CDATA[<h1>Description:</h1>
<p dir="auto">This module caters to you who are running touch mirrors and wants some more information on the headlines without having the description of the headline to be visible the entire time.</p>
<p dir="auto">When you touch the Headline, a larger Description of the Headline appears. The Description is set on a timer (set by readInterval, standard read time is 15 seconds) OR you can actively touch the description to close it and load the next Headline.</p>
<p dir="auto">Works otherwise exactly as the default news feed module.</p>
<p dir="auto">Thanks to @strawberry-3-141 for the help to get me started with this!</p>
<h1>Screenshots:</h1>
<p dir="auto"><img src="/uploads/files/1485382836769-screenshotnewsfeedtouch.png" alt="0_1485382839334_screenshotnewsfeedtouch.png" class=" img-fluid img-markdown" /></p>
<h1>Download:</h1>
<p dir="auto">[card:brobergp/MMM-newsfeedtouch]</p>
<hr />
<h2>Version 0.1</h2>
<ul>
<li>First release, evaluation needed</li>
<li>Get Description on touch</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/topic/1533/mmm-newsfeedtouch-news-so-hot-you-wanna-touch-it</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 03:56:42 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/1533.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 Jan 2017 22:13:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Fri, 19 Jan 2018 06:09:52 GMT]]></title><description><![CDATA[<p dir="auto">Just to followup on my CSS, the following should center the content pretty well on most setups - I can’t figure out why I have to manually set the height though, but if I don’t the border doesn’t draw around all the text.</p>
<p dir="auto">This creates something like a “pop-up” in the middle of your screen for the content, which works pretty well for me.</p>
<pre><code>.infoCenter {  
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%); // This centers the box
  width: 80vw; // set the width to about 80% of the screen
  height: 20vw; // set the height to about 20% of the screen
}

</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/34228</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/34228</guid><dc:creator><![CDATA[emlowe]]></dc:creator><pubDate>Fri, 19 Jan 2018 06:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Wed, 17 Jan 2018 10:44:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/emlowe" aria-label="Profile: emlowe">@<bdi>emlowe</bdi></a> yes, position and size is done with css and do need adjusting when used on smaller layouts. Look at the css code in the module for the class names and copy it to you custom.css and then play around with position and size.</p>
]]></description><link>https://forum.magicmirror.builders/post/34140</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/34140</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Wed, 17 Jan 2018 10:44:18 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Wed, 17 Jan 2018 06:32:29 GMT]]></title><description><![CDATA[<p dir="auto">This module only seems to work properly when used in top_bar or bottom_bar - or something that spans the entire “middle” of the screen.</p>
<p dir="auto">The description doesn’t work properly when used in top_right or bottom_right, although the rest of the module does work - the description doesn’t work.</p>
<p dir="auto">It’s possible there is some magic css that would make it work properly.</p>
<p dir="auto">I’m trying it on a 7" touchscreen, so real estate is limited</p>
<p dir="auto">-Earle</p>
]]></description><link>https://forum.magicmirror.builders/post/34121</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/34121</guid><dc:creator><![CDATA[emlowe]]></dc:creator><pubDate>Wed, 17 Jan 2018 06:32:29 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Tue, 06 Jun 2017 02:49:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a> Hi, great module it works well for me. however… After seeing this I though OH MAYBE I WANT A VIDEO TO PLAY WHEN I CLICK ON SOMETHING, so i tried to make a module for it and then it just wouldn’t work. So i sort of fiddled with this one to have 1 hardcoded “headline” which when clicked on, opened an iframe element and played the latest video from a youtube playlist as shown below.</p>
<p dir="auto"><img src="/assets/uploads/files/1496717074901-snip1.jpeg" alt="0_1496717074667_snip1.JPG" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1496717079069-snip2.jpeg" alt="0_1496717078788_snip2.JPG" class=" img-fluid img-markdown" /></p>
<pre><code>//codechange
                        var title = document.createElement("div");
                        title.className = "bright small regular fed";


                        title.innerHTML = "Zero Punctuation Review";
                        title.addEventListener("click", () =&gt; showdesc(this)); //Show description on click
                        wrapper.appendChild(title);


                        //below is the function to show description and hide title
                        function showdesc(thisdesc) {
                                thisdesc.intpause();    //clear interval
                                title.style.display="none";
/*                              var readTimer = setTimeout(function() {hidedesc(thisdesc)}, thisdesc.config.readInterval); //sets timeout for the description
                                description = document.createElement("div");
                                description.className = "infoCenter";
                                description.innerHTML = thisdesc.newsItems[thisdesc.activeItem].description;
                                description.addEventListener("click", () =&gt; hidedesc(thisdesc));  //Hide description on click
                                description.addEventListener("click", () =&gt; clearTimeout(readTimer)); //Stop timer when clicked so the next title doesn't reload again.
*/

                                description = document.createElement ("iframe");
                                description.className = "vid";
                                description.src = 'https://www.youtube.com/embed/htm+lastest?list=PLAbMhAYRuCUhawCEV2oXZGrienoKTN16X&amp;autoplay=1';
                                description.autoplay = true;
                                description.addEventListener("click", () =&gt; hidedesc(thisdesc));  //Hide description on click
                                description.addEventListener("click", () =&gt; clearTimeout(readTimer)); //Stop timer when clicked so the next title doesn't reload again.

//                              wr.appendChild(video);







                                wrapper.appendChild(description);


                        };

                        //and to close the description on click and get next title
                        function hidedesc(thisdesc) {
                                thisdesc.activeItem++;
                                thisdesc.intresume();   //resume the interval
                                description.style.display="none";
                        };

//codechange end
</code></pre>
<p dir="auto">Just a Suggestion in case you wanted in the future to incorporate playing the news release video as an option for your module. Sorry for playing with it!</p>
]]></description><link>https://forum.magicmirror.builders/post/22385</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/22385</guid><dc:creator><![CDATA[number1dan]]></dc:creator><pubDate>Tue, 06 Jun 2017 02:49:53 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 07 May 2017 14:33:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a> Let me fire it up in a bit and make sure I’m using the correct versions.   I just started working on the big mirror again yesterday so it’s likely there is some updating that needs to happen ;)</p>
<p dir="auto">OK my bad… I should have known better… I built the big mirror software a while ago and just fired it back up yesterday after a couple months… it’s working perfectly!!</p>
<p dir="auto">Thanks for reminding me to check better next time :)</p>
]]></description><link>https://forum.magicmirror.builders/post/21253</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21253</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Sun, 07 May 2017 14:33:39 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 07 May 2017 08:00:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cowboysdude" aria-label="Profile: cowboysdude">@<bdi>cowboysdude</bdi></a> the headline is what is clickable, are you using the latest version of MM? 2.1.1?</p>
<p dir="auto">Is it just the newsfeed you can’t click?</p>
]]></description><link>https://forum.magicmirror.builders/post/21248</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21248</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Sun, 07 May 2017 08:00:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sat, 06 May 2017 22:57:35 GMT]]></title><description><![CDATA[<p dir="auto">Well finally got my touch frame up and running and this module is not working for me…</p>
<p dir="auto">Where are you supposed to touch to get it to work?  It’s not working for me :(</p>
]]></description><link>https://forum.magicmirror.builders/post/21239</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21239</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Sat, 06 May 2017 22:57:35 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Thu, 16 Mar 2017 23:30:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a> I’m still using  the built in browser that comes with MM.<br />
Strange.</p>
]]></description><link>https://forum.magicmirror.builders/post/17666</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17666</guid><dc:creator><![CDATA[Ralf]]></dc:creator><pubDate>Thu, 16 Mar 2017 23:30:54 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Thu, 16 Mar 2017 23:10:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ralf" aria-label="Profile: Ralf">@<bdi>Ralf</bdi></a> Glad it works, even though it doesn’t work as I thought it would!<br />
just a question, are you using another browser to display the MM or is it the built in browser that comes with MM?</p>
<p dir="auto">Since my css code behaves differently for you than it does for me I would really like to know why :D</p>
]]></description><link>https://forum.magicmirror.builders/post/17656</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17656</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Thu, 16 Mar 2017 23:10:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Thu, 16 Mar 2017 23:02:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a> Perfect, works great. The description appear now on top of the screen (module position is bottom_bar), but thats right what i want.<br />
Looks great. Thanks a lot.</p>
]]></description><link>https://forum.magicmirror.builders/post/17654</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17654</guid><dc:creator><![CDATA[Ralf]]></dc:creator><pubDate>Thu, 16 Mar 2017 23:02:23 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Thu, 16 Mar 2017 22:28:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ralf" aria-label="Profile: Ralf">@<bdi>Ralf</bdi></a> Okey, sorry for the long time away, I have tested your feeds on my own mirror,</p>
<p dir="auto">I can’t really find why you don’t get the description,</p>
<p dir="auto">try this code in your custom.css</p>
<pre><code>.infoCenter {
  position: fixed;
  top: 10px;
  z-index: 10;
}
</code></pre>
<p dir="auto">That should make the description appear right on top of the headline.<br />
(I also added a higher z-index value in case something is being rendered above it, but it shouldn’t be)</p>
]]></description><link>https://forum.magicmirror.builders/post/17644</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17644</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Thu, 16 Mar 2017 22:28:48 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 12 Mar 2017 20:21:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a> the display is horizontal, i changed the custom.css<br />
changed the rss feed to BBC and NY Times, same result,<br />
the modul position is “top_bar”, before "bottom_bar,<br />
Unfortunately no change</p>
]]></description><link>https://forum.magicmirror.builders/post/17167</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17167</guid><dc:creator><![CDATA[Ralf]]></dc:creator><pubDate>Sun, 12 Mar 2017 20:21:11 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 12 Mar 2017 20:05:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ralf" aria-label="Profile: Ralf">@<bdi>Ralf</bdi></a> another thought hits me, is your display horizontal or vertical? If it’s horizontal you might have to change the css a bit</p>
<pre><code>.infoCenter {
  Top: -400px;
}</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/17161</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17161</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Sun, 12 Mar 2017 20:05:06 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 12 Mar 2017 19:56:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ralf" aria-label="Profile: Ralf">@<bdi>Ralf</bdi></a> if you don’t get anything displayed that means that the rss feed doesn’t have a description specified for the headline, ie no data.</p>
<p dir="auto">Try the feed from some big news sources. They usually have descriptions specified.</p>
]]></description><link>https://forum.magicmirror.builders/post/17156</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17156</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Sun, 12 Mar 2017 19:56:33 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Sun, 12 Mar 2017 19:29:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a><br />
When I press on the headline, the headline disappears for 15 sec. Thats it.<br />
Here the config.js:</p>
<pre><code>{
                        "module": "MMM-newsfeedtouch",
                        "position": "bottom_bar",
                        "config": {
                                "feeds": [
                                        {
                                                "title": "n-tv",
                                                "url": "http://www.n-tv.de/23.rss"
                                        },
                                        {
                                                "title": "Welt",
                                                "url": "https://www.welt.de/feeds/topnews.rss"
                                        }
                                ]
                        },
                        "classes": "default everyone"
                },

</code></pre>
<p dir="auto">This does not work with any rss feed?<br />
Can you give me a rss link where it works, so I can test.</p>
]]></description><link>https://forum.magicmirror.builders/post/17153</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/17153</guid><dc:creator><![CDATA[Ralf]]></dc:creator><pubDate>Sun, 12 Mar 2017 19:29:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-newsfeedtouch - News so hot you wanna touch it on Fri, 03 Feb 2017 03:16:29 GMT]]></title><description><![CDATA[<p dir="auto">Looks great!!  Can’t wait to get my ir touch frame :)</p>
]]></description><link>https://forum.magicmirror.builders/post/13387</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/13387</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Fri, 03 Feb 2017 03:16:29 GMT</pubDate></item></channel></rss>