This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Text over background
#7
(31.10.2022, 13:22)admin Wrote: Try this:
Code:
$(function() {
  $('.item-bgm').each(function(_, el) {
    var addr = $(el).data('object');
    if (addr) {
      grp.listen(addr, function(obj) {
        var value = obj.value
          , background = 'repeating-radial-gradient(red, transparent 150px)'; // default color

        if (value > 0 && value < 20 ) {
          background = 'repeating-radial-gradient(#0CAFFF, transparent 150px)';
        }
        else if (value >= 20 && value <= 23) {
          background = 'repeating-radial-gradient(#1DB954, transparent 150px)';
        }
        else if (value > 23 && value < 99) {
          background = 'repeating-radial-gradient(#7C0A02, transparent 150px)';
        }

        $(el).css('background', background);
      });
     
      var heataddr = addr.replace('17/0/', '18/1/'),
          cooladdr = addr.replace('17/0/', '18/3/'),
          heatstat, coolstat;
     
      function updatestat() {
        var color;
       
        if (heatstat) {
          color = 'red';
        }
        else if (coolstat) {
          color = 'blue';
        }
        else {
          color = 'white';
        }
       
        $(el).css('border', '2px solid ' + color);   
      }
     
      grp.listen(heataddr, function(obj) {
        heatstat = obj.value > 0;
        updatestat();
      }, true);

      grp.listen(cooladdr, function(obj) {
        coolstat = obj.value > 0;
        updatestat();
      }, true);
    }
  });
});
It works.
Your support is gratifying, thank you for your support  Big Grin
Reply


Messages In This Thread
Text over background - by Fahd - 28.10.2022, 06:10
RE: Text over background - by admin - 31.10.2022, 07:13
RE: Text over background - by Fahd - 31.10.2022, 07:33
RE: Text over background - by admin - 31.10.2022, 12:06
RE: Text over background - by Fahd - 31.10.2022, 12:11
RE: Text over background - by admin - 31.10.2022, 13:22
RE: Text over background - by Fahd - 31.10.2022, 13:45

Forum Jump: