前端手写面板

前端手写面板

1、安装fabric.js
 npm install fabric --save 
2、上代码
<template>
    <div class="bordered-div">
        <canvas id="canvas" width="450" height="240"></canvas>
        <button @click="saveSignature">保存签名</button>
        <button @click="clearSignature">清空签名</button>
        <img :src="dataUrls" />
    </div>
</template>

<script>

import { fabric } from "fabric";

export default {
    data() {
        return {
            dataUrls: "",
        };
    },
    mounted() {
        // 实例化fabric canvas
        this.canvas = new fabric.Canvas("canvas", {
            isDrawingMode: true,//表示可以进行绘图操作。
        });
    },
    methods: {
        // 保存签名
        saveSignature() {
            const dataUrl = this.canvas.toDataURL({
                format: "png",
                quality: 1,
                enableRetinaScaling: 1,
                multiplier: 1,
            });
            // 签名数据保存为图片
            this.dataUrls = dataUrl;
            this.changeToImage(this.dataUrls);
            console.log(dataUrl);
        },
        // 保存签名
        clearSignature() {
            this.canvas.clear().renderAll();
        },

        changeToImage(base64) {
            return `data:image/png;base64,${base64}`;
        },
    },
};
</script>

<style scoped>
h1 {
  color: green;
}

/* CSS样式 */
.bordered-div {
    border-width: 3px; /* 边框宽度 */
    border-style: solid; /* 边框样式,可以是solid(实线), dashed(虚线), dotted(点线)等 */
    border-color: red; /* 边框颜色 */
    width : 450px ;
    height : 240px ;
}
</style>
好的,以下是一个简单的前端手写轮播图实现思路: 1. HTML 结构中需要一个容器元素,用来包含轮播图。 2. 在该容器元素中,添加多个轮播项,每个轮播项包含一张图片和一段描述文字。 3. 通过 CSS 设置轮播项的样式,包括宽度、高度、位置等。 4. 在 JavaScript 中获取容器元素和轮播项元素,以及左右切换按钮元素。 5. 通过设置 CSS 样式,将当前显示的轮播项置于最前面。 6. 给左右切换按钮元素添加事件监听器,当点击时,通过 JavaScript 移动轮播项的位置,完成切换。 7. 使用定时器 setInterval() 实现自动轮播,每隔一定时间切换到下一个轮播项。 以下是一个简单的前端手写轮播图代码示例: ```html <div class="carousel-container"> <div class="carousel-item active"> <img src="image1.jpg" alt="image1"> <div class="carousel-caption"> <h3>Image 1</h3> <p>Description 1</p> </div> </div> <div class="carousel-item"> <img src="image2.jpg" alt="image2"> <div class="carousel-caption"> <h3>Image 2</h3> <p>Description 2</p> </div> </div> <div class="carousel-item"> <img src="image3.jpg" alt="image3"> <div class="carousel-caption"> <h3>Image 3</h3> <p>Description 3</p> </div> </div> <div class="carousel-item"> <img src="image4.jpg" alt="image4"> <div class="carousel-caption"> <h3>Image 4</h3> <p>Description 4</p> </div> </div> <div class="carousel-item"> <img src="image5.jpg" alt="image5"> <div class="carousel-caption"> <h3>Image 5</h3> <p>Description 5</p> </div> </div> <div class="carousel-prev"></div> <div class="carousel-next"></div> </div> ``` ```css .carousel-container { position: relative; width: 800px; height: 500px; overflow: hidden; } .carousel-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: all 1s ease-in-out; } .carousel-item.active { opacity: 1; } .carousel-item img { width: 100%; height: 100%; object-fit: cover; } .carousel-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background-color: rgba(0, 0, 0, 0.5); color: #fff; font-size: 24px; line-height: 1.5; } .carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background-color: rgba(0, 0, 0, 0.5); cursor: pointer; } .carousel-prev { left: 0; } .carousel-next { right: 0; } ``` ```javascript const carouselContainer = document.querySelector('.carousel-container'); const carouselItems = document.querySelectorAll('.carousel-item'); const prevBtn = document.querySelector('.carousel-prev'); const nextBtn = document.querySelector('.carousel-next'); let currentIndex = 0; function showItem(index) { carouselItems.forEach(item => { item.classList.remove('active'); }); carouselItems[index].classList.add('active'); } prevBtn.addEventListener('click', () => { currentIndex--; if (currentIndex < 0) { currentIndex = carouselItems.length - 1; } showItem(currentIndex); }); nextBtn.addEventListener('click', () => { currentIndex++; if (currentIndex > carouselItems.length - 1) { currentIndex = 0; } showItem(currentIndex); }); setInterval(() => { currentIndex++; if (currentIndex > carouselItems.length - 1) { currentIndex = 0; } showItem(currentIndex); }, 5000); ``` 这是一个简单的轮播图实现,具体的实现方式可以根据实际需求进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值