Git Product home page Git Product logo

Comments (4)

unclay avatar unclay commented on June 23, 2024

安卓机,使用rem,小圆点不圆

.circle {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background: red;
}
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>

qq 20171227181923

解决方法:用px,或者用图片(png、svg)

附加circle.svg

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="200" height="200" version="1.1"
xmlns="http://www.w3.org/2000/svg">
   <circle cx="100" cy="100" r="100" fill="#F76260"/>
</svg>

from blog.

unclay avatar unclay commented on June 23, 2024

判断一个数字的小数点部分不超过4位数

初版

const num = 0.0000001;
const arr = String(num).split('.');
if (arr[1] && arr[1].length > 4) {
  console.log('error number');
}

当 num 为 1e-4 的科学数时,上面逻辑会绕过,不会出现 error

更改后,通过 toFixed 处理后,判断前后值是否有变化来判断小数点是否超出

const num = 1e-4;
if (String(num) !== num.toFixed(4)) {
  console.log('error number');
}

from blog.

unclay avatar unclay commented on June 23, 2024

小米6
video标签的元素尺寸较小的时候,icon会被切掉一部分,显示不出来
被触发播放后,元素层级变为顶层,会遮住那些悬浮的元素

from blog.

unclay avatar unclay commented on June 23, 2024

悬浮在底部的输入框,触发键盘后,窗口向上滚动;
失去焦点后窗口没滚动回来,需要手动以下方式滚动回来

document.body.scrollTop = document.body.scrollTop;

from blog.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.