0.0.7 • Published 6 years ago

gulp-vizoo v0.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

gulp-vizoo

Add Vizoo script and inline plugins into HTML document

Getting Started

This plugin requires Gulp ^3.9.1

npm install gulp-vizoo --save-dev

Once the plugin has been installed, it may be enabled inside your gulpfile.js with this line of JavaScript:

var vizoo = require('gulp-vizoo');

The "vizoo" task

Overview

No seu projeto adicione uma fonte, um pipe com o a variavel vizoo, e o destino. Segue exemplo:

gulp.src('dev/index.html')
  .pipe(vizoo({              
    main: {
      plugins:['theme@red','grid'],
          attr:{splash:false}
      }
    }))
    .pipe(gulp.dest('./dist/'));

Options

plugins

An array containing the names of the files you use

attr

attribute parameters data-vizoo-attr used in the vizu script tag

Usage Examples

gulp.task('default', function(cb) {
  gulp.src('dev/index.html')
  .pipe(vizoo({              
    main: {
      plugins:['theme@red','grid'],
          attr:{splash:false}
      }
    }))
    .pipe(gulp.dest('./dist/'));
});

document replace

add in your document HTML the next comments:

<!-- gulp-vizoo/ -->
  <script></script>
<!-- /gulp-vizoo -->

Content will be replaced with the vizco scripts

Usage Examples

<!DOCTYPE html>
<html>
<head>
  <title></title>

  <!-- gulp-vizoo/ -->
    <script
  type="text/javascript" data-vizoo-core
    src="http://vizoo.online/core/v1/vizoo.js"     
  data-vizoo-plugins="cards|tabs|grid|import|gallery|timeline"
    data-vizoo-attr="splash:true,splashColor1:'#333',splashColor2:'#02ffe0'"
  ></script>
    <!-- /gulp-vizoo -->
</head>
<body>
  <p>Content</p>
</body>
</html>

Attention: insert the attribute on tag HTML: data-vizoo-theme="THEME-NAME"

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago