:doodle{ @size: 100vm 98vmin; } position: fixed; top: @r(1%, 100%); left: @r(1%, 100%); width: 2px; height: 2px; background: #04033e; border-radius: 50%; z-index:-999; background: hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)); zoom: @rn(.1, 5, 3); transform: rotate(@r(360deg)) translate(@r(-50, 50)vmin, @r(-50, 50)vmin); animation: move @r(20, 40)s infinite @r(-10, 0)s @p(linear, ease-in, ease-in-out) alternate; box-shadow: 0 0 1px hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)), 0 0 3px hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)); @keyframes move { 0% { transform: rotate(0) translate(0, 0); } 100% { transform: rotate(720) translate(-90, -90); } } @keyframes starMove{ from { } to { } } @keyframes weiba{ 100%{ box-shadow: 0 0 100px #fff, 0 0 300px #fff; } }

随笔分类 -  C#

摘要:netcore 项目部署后,iis启动失败,访问站点抛502异常 HTTP Error 502.5 - Process Failure 打开Windows时间查看器,在Windows日志中,找到站点启动异常的日志 Application 'MACHINE/WEBROOT/APPHOST/xxxxxx 阅读全文
posted @ 2022-08-03 20:30 ⁂六娃⁂ 阅读(606) 评论(0) 推荐(0)
摘要:1.对数组元素进行条件判断,并获取符合条件的元素index itemIndex = tempArray.findIndex((value, index, arr) => { return value._id == 1; }); 2.HTML 图片自适应大小 img{ width:auto; heig 阅读全文
posted @ 2020-04-17 13:06 ⁂六娃⁂ 阅读(172) 评论(0) 推荐(0)
摘要:最近接了一个接口,在调用接口时,返回这个错误代码。 百度到的解释是:请求格式正确,但是由于含有语义错误,无法响应。 开始一直在纠结,语义错误到底是什么?对照了无数次参数名,传参方式,无解。 后来用Fiddler抓包比较后,终于发现原因。 HttpRequest中所带cookie和服务器端接收的coo 阅读全文
posted @ 2018-03-16 14:36 ⁂六娃⁂ 阅读(21487) 评论(0) 推荐(0)
摘要:使用SmtpClient发送邮件的时候,出现了如题错误。 解决方案: 将 SmtpClient.UseDefaultCredentials 属性设置为 true 。 官方文档说明: Some SMTP servers require that the client be authenticated 阅读全文
posted @ 2018-01-02 15:15 ⁂六娃⁂ 阅读(2837) 评论(0) 推荐(0)

xxxx