JulyYu

Results 36 comments of JulyYu

var title = '🎅🎄🎁❤️🚀圣诞快乐,系列有9了'; var fileName = "weixin_201912221234567av.jpg"; var title2 = '🎅🎄🎁❤️🚀大家圣诞快乐,系列有9了'; var title3 = '在这里祝大家圣诞快乐,系列有9了'; * 第一题 ``` JS function cutTitleSmall15(text) { var length = text.length; if (length

* 第一题 ```JS //zxx: 只有首尾空格要去除哦~ function clearBlank(strTel) { return strTel.replace(/\s/g, ""); } ``` * 第二题 ```JS function ToCDB(strTel) { var tmp = ""; for (var i = 0; i <...

[Demo](https://codepen.io/yuhaocan/pen/dybRJVB) * HTML ```html 标题 恭喜我们29个最老的测试版网站-他们现在不再是测试版了! 《独角兽动物园》35;7:Nicolas访谈 减少需要重新审查的封闭问题数量的建议 实验:在接下来的30天内(直到2019-09-07),以3票为基准关闭和重新打开提出的问题 ``` * CSS ```css .label-box { width: 400px; border-radius: 2px; border: 1px solid rgb(239, 239, 213); box-shadow: 0 0 4px rgb(239,...

* 第一题 ```javascript document.querySelectorAll('[type="radio"]:required') ``` * 第二题 ```javascript document.querySelectorAll('[type="radio"]:disabled') ``` * 第三题 ```javascript document.querySelectorAll('[type="radio"]:checked') ``` * 第四题 ```javascript document.getElementById('removeDisabled'); ```

* 第一题 ``` js // zxx: 大量不通过 function colorPad(value) { var colorPattern = /(^#[0-9A-Fa-f]{6}$)|(^#[0-9A-Fa-f]{3}$)/i; if (value.length > 7) { //超出限制判断 return "#000000"; } if (colorPattern.test(value)) { //正则判断不符合都为000000 var value =...

[Demo](https://codepen.io/yuhaocan/pen/vYEXEdZ) * 第一题 ```JS function telTrim(strTel) { temp = strTel.replace(/\s|-/g, ""); if (/^\d{11}$/.test(temp)) { return temp; } return strTel; } ``` * 第二题 ```JS var form = document.getElementById('form'); var input...

```css dl { width: 400px; height: 200px; border: 1px solid black; display: block; padding: 5px; } dt, dd { display: inline; margin: 0; padding: 0; } dt:not(:first-child):before { content: "\0A";...

I have same problem.but it cant find in Android. I see circle draw use path to do will have Antialiasing.

In fill_content.dart I modify draw func,if is iOS and hasCircle use drawCircle instead of drawPath. ``` // canvas.drawPath(_path, _paint); if(Platform.isIOS){ if(hasCircle){ var rect = _path.getBounds(); canvas.drawCircle(rect.center,rect.width / 2,_paint); }else{ canvas.drawPath(_path,...

> > In fill_content.dart I modify draw func,if is iOS and hasCircle use drawCircle instead of drawPath. > > ``` > > // canvas.drawPath(_path, _paint); > > if(Platform.isIOS){ > >...