Advertisement
tuvok81

WebSDR User Anzeige

Aug 15th, 2023
1,289
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ALTE JAVASCRIPT
  2. -------------------------
  3.  
  4. var uu_compactview=false;
  5. function douu()
  6. // draw the diagram that shows the other listeners
  7. {
  8.    s='';
  9.    total=0;
  10.    for (b=0;b<nbands;b++) {
  11.       if (!uu_compactview) {
  12.          s+="<p><div align='left' style='width:1024px; background-color:black;'><div class=others>";
  13.          for (i=0;i<uu_names.length;i++) if (uu_bands[i]==b && uu_names[i]!="") {
  14.             s+="<div id='user"+i+"' align='center' style='position:relative;left:"+
  15.                  (uu_freqs[i]*1024-250)
  16.                 // Original Zeile zum User Anzeigen
  17.                 //+"px;width:500px; color:"+others_colours[i%8]+";'><b>"+uu_names[i]+"</b></div>";
  18.                 // Username ausgeblendet
  19.                  +"px;width:500px; color:"+others_colours[i%8]+";'>";
  20.                 s+="<b>|</b>";
  21.                 s+="</div>";
  22.                 total++;
  23.          }
  24.          s+="<img src="+bi[b].scaleimgs[0][0]+"></div></div></p>";
  25.       } else {
  26.          s+="<p><div align='left' style='width:1024px;height:15px;position:relative; background-color:black;'>";
  27.          for (i=0;i<uu_names.length;i++) if (uu_bands[i]==b && uu_names[i]!="") {
  28.             s+="<div id='user"+i+"' style='position:absolute;top:1px;left:"+
  29.                  (uu_freqs[i]*1024)
  30.                  +"px;width:1px;height:13px; background-color:"+others_colours[i%8]+";'></div>";
  31.             total++;
  32.          }
  33.          s+="</div><div><img src="+bi[b].scaleimgs[0][0]+"></div></p>";
  34.       }
  35.    }
  36.    usersobj.innerHTML=s;
  37.    numusersobj.innerHTML=total;
  38. }
  39.  
  40. NEUES JAVASCRIPT
  41. ---------------------
  42. var uu_compactview=false;
  43. function douu()
  44. {
  45.    s='';
  46.    total=0;
  47.    for (b=0;b<nbands;b++) {
  48.       if (!uu_compactview) {
  49.          s+="<p><div  style='width:1024px; background-color:black;border-radius: 4px;box-shadow: 4px 4px 15px 0px rgba(0,0,0);margin: 0px 5px 0px 5px;margin-left: auto;margin-right: auto;'><div class=others>";
  50.          for (i=0;i<uu_names.length;i++) if (uu_bands[i]==b && uu_names[i]!="") {
  51.             s+="<div id='user"+i+"' align='center' style='position:relative;left:"+(uu_freqs[i]*1024-250)+"px;width:500px; color:"+others_colours[i%8]+";'><b>"+uu_names[i]+"</b></div>";
  52.             total++;
  53.          }
  54.          s+="<img src="+bi[b].scaleimgs[0][0]+"></div></div></p>";
  55.       } else {
  56.          s+="<p><div style='width:1024px;height:35px;position:relative; background-color:black;border-radius: 4px;box-shadow: 4px 4px 15px 0px rgba(0,0,0);margin: 0px 5px 0px 5px;margin-left: auto;margin-right: auto;'>";
  57.          for (i=0;i<uu_names.length;i++) if (uu_bands[i]==b && uu_names[i]!="") {
  58.             s+="<div id='user"+i+"' style='position:absolute;top:1px;left:"+
  59.                  (uu_freqs[i]*1024)
  60.                  +"px;width:1px;height:13px; background-color:"+others_colours[i%8]+";'></div>";
  61.             total++;
  62.          }
  63.          s+="<div style='position:absolute;bottom:1px'><img src="+bi[b].scaleimgs[0][0]+"></div></div></p>";
  64.       }
  65.    }
  66.  
  67.    usersobj.innerHTML=s;
  68.    numusersobj.innerHTML=total;
  69. }
  70.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement