Giter Site home page Giter Site logo

How to hide blue lines? about vue-moveable HOT 4 OPEN

probil avatar probil commented on May 18, 2024
How to hide blue lines?

from vue-moveable.

Comments (4)

tnorbs avatar tnorbs commented on May 18, 2024

I'm having the same issue.. Can't hide the blue lines!

from vue-moveable.

L-wo avatar L-wo commented on May 18, 2024

You can hide the blue lines by including this CSS in an appropriate place:

.moveable-control-box { opacity: 0; }

In my project, I included it in the parent component in an unscoped style tag.

from vue-moveable.

rosoksdev avatar rosoksdev commented on May 18, 2024

You should change all states of moveable object to false (keepRatio or throttle can be origin):

moveable: {
     draggable: false,
     throttleDrag: 1,
     resizable: false,
     throttleResize: 1,
     keepRatio: true,
     scalable: false,
     throttleScale: 1,
     rotatable: false,
     throttleRotate: 1,
     pinchable: false,
     origin: false
}

by doing this, element wouldn't have movable possibility.
or
To save movable, you should look at css tables in developer console (in browser), and find one which sets color to editlines. (In firefox go to your site and press SHIFT + F7 to access all css tables, so you can play with visibility of tables and put your properties in code)

from vue-moveable.

umonaca avatar umonaca commented on May 18, 2024

Set the following CSS in your project:

.moveable-line {
  background-color: transparent !important;
}

from vue-moveable.

Related Issues (20)

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.