All Projects → javisperez → vue-visible

javisperez / vue-visible

Licence: MIT license
v-visible directive for VueJS

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to vue-visible

babel-plugin-react-directives
A babel plugin that provides some directives for react(JSX), similar to directives of vue.
Stars: ✭ 80 (+158.06%)
Mutual labels:  directive, v-show
TTInputVisibilityController
Lightweight controller to keep your inputs visible when the keyboard is presented.
Stars: ✭ 21 (-32.26%)
Mutual labels:  visibility, visible
angular-downloader
Angular Downloader is an angularjs directive that enables you to manage browser download - https://720kb.github.io/angular-downloader
Stars: ✭ 16 (-48.39%)
Mutual labels:  directive
v-drag-drop
Minimalistic drag & drop directives for Vue.js
Stars: ✭ 17 (-45.16%)
Mutual labels:  directive
vue-body-scroll-lock
A Vue directive to lock the body scroll without stopping the target element from scrolling.
Stars: ✭ 30 (-3.23%)
Mutual labels:  directive
LiveHiddenCamera
Live Hidden Camera is a library which record live video and audio from Android device without displaying a preview.
Stars: ✭ 69 (+122.58%)
Mutual labels:  hidden
Keylogger-Screen-Capture
It is primary designed to be hidden and monitoring the computer activity. Take a screenshot of desktop in hidden mode using Visual C++ and save automatically to 'jpeg' file in every 30 second. 60+ Most Popular antivirus not detect this application while it is running on background.
Stars: ✭ 37 (+19.35%)
Mutual labels:  hidden
SilentCryptoMiner
A Silent (Hidden) Free Crypto Miner Builder - Supports ETH, ETC, XMR and many more.
Stars: ✭ 547 (+1664.52%)
Mutual labels:  hidden
Riverbed-Community-Toolkit
Riverbed Community Toolkit is a public toolkit for Riverbed Solutions engineering and integration
Stars: ✭ 16 (-48.39%)
Mutual labels:  visibility
document-visibility
React hook for subscribing to document visibility
Stars: ✭ 31 (+0%)
Mutual labels:  visibility
graphql-directive-sql
Unify your SQL schema and your GraphQL Schema. Use GraphQL SDL as the lingua franca to define your data requirements.
Stars: ✭ 28 (-9.68%)
Mutual labels:  directive
hiddencodecademy.github.io
This is the place for hidden courses on Codecademy
Stars: ✭ 19 (-38.71%)
Mutual labels:  hidden
epcis
.NET 5 implementation of GS1's EPCIS repository version 1.2
Stars: ✭ 20 (-35.48%)
Mutual labels:  visibility
angular-barcode
An angular directive for lindell's JsBarcode
Stars: ✭ 25 (-19.35%)
Mutual labels:  directive
SilentETHMiner
A Silent (Hidden) Ethereum (ETH & ETC) Miner Builder
Stars: ✭ 219 (+606.45%)
Mutual labels:  hidden
ngx-konami
A simple directive to add easter eggs in your Angular application 👾
Stars: ✭ 34 (+9.68%)
Mutual labels:  directive
angular-paypal-checkout
Angular directive for running PayPal's in-context checkout flow
Stars: ✭ 14 (-54.84%)
Mutual labels:  directive
dependency-check-plugin
Jenkins plugin for OWASP Dependency-Check. Inspects project components for known vulnerabilities (e.g. CVEs).
Stars: ✭ 107 (+245.16%)
Mutual labels:  visibility
vue2-loading
vue-loading presented in Vue2
Stars: ✭ 15 (-51.61%)
Mutual labels:  directive
v-copy
Vue directive to copy to clipboard. (1kB)
Stars: ✭ 88 (+183.87%)
Mutual labels:  directive

VueVisible

v-visible directive for VueJS (2.x)

Demo

A jsFiddle live demo: https://jsfiddle.net/fcpc6utm/

About

This plugins adds a v-visible directive (similar to the native v-show) that changes the visibility style of the applied element (hidden or visible).

Install

With npm:

npm install --save vue-visible

With CDN:

<script src="https://cdn.jsdelivr.net/npm/vue-visible@1/dist/v-visible.min.js"></script>

Usage

If you're using modules, first import it:

import VueVisible from 'vue-visible';

Vue.use(VueVisible);

Then in your template just use the directive:

<div v-visible="myCondition">I'm visible</div>

Or if you're not using modules, just include the js:

<script src="node_modules/vue-visible/dist/v-visible.js"></script>
<div v-visible="myCondition">I'm visible</div>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].