3 Matching Annotations
  1. Aug 2022
    1. ```html

      <div class="select-container" data-content=""> <select class="select" id="words"> <option value="lorem ipsum dolor sit amet">Lorem ipsum dolor sit amet</option> <option value="lorem">Lorem</option> <option value="ipsum">Ipsum</option> <option value="dolor">Dolor</option> <option value="sit">Sit</option> <option value="amet">Amet</option> </select> </div>

      css .select { color: transparent; appearance: none; padding: 5px; background: transparent url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-down-b-128.png") no-repeat calc(~"100% - 5px") 7px; background-size: 10px 10px; }

      .select-container { position: relative; display: inline-block; }

      .select-container::before { content: attr(data-content); pointer-events: none; position: absolute; top: 0; right: 10px; bottom: 0; left: 0; padding: 7px; font: 11px Arial, sans-serif; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; text-transform: capitalize; } js const selectContainer = document.querySelector(".select-container"); const select = selectContainer.querySelector(".select");

      select.value = "lorem ipsum dolor sit amet"; selectContainer.dataset.content = select.value;

      function handleChange(e) { selectContainer.dataset.content = e.currentTarget.value; }

      select.addEventListener("change", handleChange); ```

  2. Feb 2021
    1. 苹果准备最早明年发布它的高端 VR 设备,这款计划中的产品售价将会高达 3000 美元。代号为 N301 的 VR 设备使用了两个 8K 显示屏,采用 M1 芯片的继任者,能展示丰富的 3D 图形。苹果将会使用眼球跟踪技术以较低的保真度渲染非用户注视的目标。苹果正在测试的一个版本使用了 10 多个摄像头,从跟踪手运动到提供周围空间的即时动态,可用于混合和增强现实体验,不限于浸入式的 VR。

  3. Feb 2020
    1. The biggest drawback of algorithmic feeds is that you might be looking at irrelevant content. When you see something on your timeline and want to comment, you will have to check the timestamp to see if your comment is still relevant or not.