GithubHelp home page GithubHelp logo

yingfengchen / vue-sketch-ruler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from chuxiaoguo/vue-sketch-ruler

0.0 1.0 0.0 1.45 MB

用vue组件实现的一个素描标尺。a ruler tool for vue

Home Page: https://chuxiaoguo.gitee.io/vue-sketch-ruler/

License: MIT License

JavaScript 30.58% Vue 69.42%

vue-sketch-ruler's Introduction

npm-version license

English | 简体中文

vue-sketch-ruler

A sketch like ruler in vue

Live Demo

click here 国内站点

Install

npm install --save vue-sketch-ruler

Supported features

  • ruler render
  • ruler render when scale
  • ruler render when srolling
  • switch status of ruler(show or hide)
  • reference line management
  • switch status of reference line (show or hide)

Upcoming features

  • [] contextmenu of ruler
  • [] add event on corner
  • [] separate css style
  • [] international

Usage

<template>
    <SketchRule
        :lang="lang"
        :thick="thick"
        :scale="scale"
        :width="582"
        :height="482"
        :startX="startX"
        :startY="startY"
        :shadow="shadow"
        :horLineArr="lines.h"
        :verLineArr="lines.v"
        :cornerActive="true"
        @handleLine="handleLine"
        @onCornerClick="handleCornerClick"
    >
</template>
<script>
import Vue from 'vue';
import SketchRule from "vue-sketch-ruler";
const rectWidth = 160;
const rectHeight = 200;
export default Vue.extend({
    data() {
        return {
            scale: 2, //658813476562495, //1,
            startX: 0,
            startY: 0,
            lines: {
                h: [100, 200],
                v: [100, 200]
            },
            thick: 20,
            lang: "zh-CN",
            isShowRuler: true,
            isShowReferLine: true
        }
    },
    components: {
        SketchRule
    }
});
</script>

A complete example can be found here

api

Interface

interface Lines {
    h: number[],
    v:  Array<Number>,
}
interface Shadow {
    x: number,
    y: number,
    width: number,
    height: number
}
interface Palette {
    bgColor: string, // ruler bg color
    longfgColor: string, // ruler longer mark color
    shortfgColor: string, // ruler shorter mark color
    fontColor: string, // ruler font color
    shadowColor: string, // ruler shadow color
    lineColor: string,
    borderColor: string',
    cornerActiveColor: string,
}

Attributes

Attributes Description Type Default
lang init language lang String zh-CN
scale ruler scale size Number 2
thick thick size Number 16
width the window width of the currently loaded ruler Number -
height the window height of the currently loaded ruler Number -
startX x at the beginning of the ruler Number 0
startY y at the beginning of the ruler Number 0
shadow size and the start coordinates on the ruler of the shadow Shadow 0
startY y at the beginning of the ruler Number {x: 200,y: 100,width: 200,height: 400}
horLineArr Initial values for horizontal reference lines Array []
verLineArr Initial values for vertical reference lines Array []
palette the palette of sketch ruler Palette {bgColor: 'rgba(225,225,225, 0)',longfgColor: '#BABBBC',shortfgColor: '#C8CDD0',fontColor: '#7D8694', shadowColor: '#E8E8E8',lineColor: '#EB5648', borderColor: '#DADADC',cornerActiveColor: 'rgb(235, 86, 72, 0.6)',}

Event

EventName Description CallbackParam
handleLine horizontal or vertical reference lines has changed (add or remove) Lines

License

MIT

reference

a react component mb-sketch-ruler from mockingbot.

vue-sketch-ruler's People

Contributors

chuxiaoguo avatar

Watchers

James Cloos avatar

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.