分类: 前端

Web前端,网站前端开发

28 篇文章

Vue用this.$set赋值数组
日常记录一下Vue用this.$set赋值数组 @select="handleSelectuser($event, index)" data: { name: '', xqarray: [ { "value": "三全鲜食(北新泾店)", "address": "长宁区新渔路144号" }, { "value": "Hot honey 首尔炸鸡(仙…
CSS3 SVG打勾动画
使用 HTML+CSS 建立打勾符号动画。讲解如何使用 SVG 绘画打勾符号,运用两个关键的 CSS 属性 stroke-dasharray & stroke-dashoffset,并通过 CSS Animation 调整 stroke-dashoffset 完成动画。 <input type="checkbox"> <s…
dom-to-image插件网页生成截图保存下载
[github author="tsayen" project="dom-to-image"]https://github.com/tsayen/dom-to-image[/github] 一开始是用html2canvas,发现满足不了需求。于是朋友推荐我用dom-to-image 引用<script src="https://cdn.boo…
纯 CSS 实现优惠券透明圆形镂空打孔效果
我们在做商城类项目时,时常会有开发优惠券的需求,那么我们如何通过纯 CSS 来实现类似京东、淘宝的优惠券样式。 下面给大家分享一个纯 CSS 写的优惠券边沿透明圆形镂空打孔效果。最终效果大致如下: 使用了生成二维码和点击复制jquery.qrcode.min.js、clipboard.min.js两个插件 方法一 div{ width:300px;…
element ui 时间日期选择器中默认0点开始
默认显示当天00:00:00到23:59:59 const start = new Date(new Date().setHours(0, 0, 0, 0)) const end = new Date(new Date().setHours(23, 59, 59, 59)) 默认显示昨天00:00:00到23:59:59 const start =…
解决layui提交表单返回错误提示
layui提交表单返回都是错误,但是后台又接收到数据 只需要把dataType: "json",去掉就解决了 $.ajax({ url: "/file.php", data: formData, type: "post", // dataType: "json", cache: true, async : false, processData: f…
js每次复制随机微信号代码
由于网站有多个客服微信,所以需要客户复制一个随机微信号码 移动端js实现点击复制到剪贴板,【真正】兼容所有浏览器uc、qq、微信、手机自带等浏览器https://github.com/majiang666/copy 引用 <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/j…
swiper tab选项卡效果内容不一样高度自适应
由于内容不一样,swiper自动算一个最高的,第二个tab多出空白的,看到swiper-wrapper的class加了一个高度,我用autoHeight: true这个参数貌似没有效果,最后发现用简单的css就能解决 #tabs-container .swiper-wrapper{ height: 100%; } #tabs-container .…
解决iOS下button按钮样式渐变背景问题
只需要加上这个样式即可 .form_content .btn-submit{ width: 100%; padding: 1rem; background: #ff6471; color: #fff; border: none; line-height: 3rem; font-size: 1.5rem; -webkit-appearance:non…