瀏覽代碼

Fine tune distances

master
The Dod 23 小時之前
父節點
當前提交
b5ea5571cd
共有 2 個檔案被更改,包括 10 行新增7 行删除
  1. 3
    3
      static/js/config.js
  2. 7
    4
      templates/index.html

+ 3
- 3
static/js/config.js 查看文件

@@ -1,4 +1,4 @@
1 1
 const MAX_DIST = 3500;
2
-const MIN_DIST = 500;
3
-const VID_BLUR_FACTOR = MAX_DIST/16.0; // float
4
-const TICKER_BLUR_FACTOR = MAX_DIST/32.0; // float
2
+const MIN_DIST = 1000;
3
+const VID_BLUR_FACTOR = MAX_DIST/23.0; // float
4
+const TICKER_BLUR_FACTOR = MAX_DIST/5.0; // float

+ 7
- 4
templates/index.html 查看文件

@@ -18,8 +18,8 @@
18 18
     </div>
19 19
     <div class="row">
20 20
       <div class="col12">
21
-        <div id="the-ticker" class="marquee alert alert-danger text-white h2 fw-bolder w100 opacity-50 text-nowrap" role="alert" style="direction:rtl; position:fixed; left:0; bottom:4rem; z-index:23">
22
-          חוסל מחבל חמאס שעבד עם "אל-ג'זירה" • ברצועה מדווחים על הרוגים בתקיפות במחנה נוסיראת ובדרום חאן יונס • בין ההרוגים - כתב "פלשתין אל יום" וכתב "אל-ג'זירה" חוסאם שבאת • צה"ל חשף כי לפי מידע מודיעיני, חוסאם שבאת הוא מחבל בגדוד בית חאנון של ארגון הטרור חמאס • שחר קליימן, ישראל היום, 24/2/25
21
+        <div id="the-ticker" class="marquee alert alert-danger text-white h2 fw-bolder w100 opacity-50 text-nowrap" role="alert" style="direction:rtl; position:fixed; left:0; bottom:2rem; z-index:23">
22
+          חוסל מחבל חמאס שעבד עם "אל-ג'זירה" • ברצועה מדווחים על הרוגים בתקיפות במחנה נוסיראת ובדרום חאן יונס • בין ההרוגים - כתב "פלשתין אל יום" וכתב "אל-ג'זירה" חוסאם שבאת • צה"ל חשף כי לפי מידע מודיעיני, חוסאם שבאת הוא מחבל בגדוד בית חאנון של ארגון הטרור חמאס • שחר קליימן, ישראל היום, 24/2/25
23 23
         </div>
24 24
       </div>
25 25
     </div>
@@ -47,12 +47,15 @@
47 47
   };
48 48
   async function updateDistance() {
49 49
     var dist = await getDistance();
50
-    var vidblur = 0; tickerblur = 0;
50
+    var vidblur = 0, tickerblur = 8;
51 51
     if (dist>MIN_DIST && dist<MAX_DIST) {
52 52
       vidblur = parseInt((MAX_DIST-dist)/VID_BLUR_FACTOR);
53 53
       tickerblur = parseInt(dist/TICKER_BLUR_FACTOR);
54 54
     }
55
-    //console.log(`${vidblur}, ${tickerblur}`);
55
+    if (dist<2*MIN_DIST) {
56
+      tickerblur = 0;
57
+    }
58
+    // console.log(`${vidblur}, ${tickerblur}`);
56 59
     document.getElementById("the-video").style.filter=`blur(${vidblur}px)`;
57 60
     document.getElementById("the-ticker").style.filter=`blur(${tickerblur}px)`;
58 61
   }

Loading…
取消
儲存