Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
add plugins base files
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Fiebig committed Oct 7, 2016
1 parent a9db8f1 commit 3c9ea5e
Show file tree
Hide file tree
Showing 32 changed files with 1,952 additions and 17 deletions.
16 changes: 0 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,2 @@
*.log
wp-config.php
wp-content/advanced-cache.php
wp-content/backup-db/
wp-content/backups/
wp-content/blogs.dir/
wp-content/cache/
wp-content/upgrade/
wp-content/uploads/
wp-content/wp-cache-config.php
wp-content/plugins/hello.php

/.htaccess
/license.txt
/readme.html
/sitemap.xml
/sitemap.xml.gz

10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# faf-compare
Wordpress Plugin for Image Compare based on TwentyTwenty

Wordpress Plugin for Image Compare based on TwentyTwenty.
Show images before/after comparison of your WordPress images.

# Installation

* Unzip and upload /bootcamp-compare/ to the /wp-content/plugins/ directory
* Activate the plugin through the plugins menu in WordPress
* Use the editor button or [compare before="<id of image>" after="<id of image>"] to show comparison.
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "fafiebig/faf-compare",
"description": "Wordpress Plugin for Image Compare based on TwentyTwenty.",
"keywords": [
"wordpress",
"plugin",
"twentytwenty",
"compare",
"before",
"after"
],
"homepage": "https://github.com/fafiebig/faf-compare",
"license": "GNU GENERAL PUBLIC LICENSE",
"authors": [
{
"name": "F.A. Fiebig",
"email": "[email protected]",
"homepage": "http://fafworx.de"
}
],
"type": "wordpress-plugin",
"require": {
"php": ">=5.3.2",
"composer/installers": "v1.2.0"
}
}
1 change: 1 addition & 0 deletions editor/editor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions faf-compare.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php/*Plugin Name: FAF ComparePlugin URI: http://fafworx.deDescription: Show images before/after comparison of your WordPress images (based on TwentyTwenty).Version: 1.0Author: F.A. FiebigAuthor URI: http://fafworx.deLicense: GNU GENERAL PUBLIC LICENSE*/defined( 'ABSPATH' ) or die( 'No direct script access allowed!' );/** * add scripts and styles */function faf_compare_scripts_styles(){ wp_enqueue_script('event-move-js', plugins_url('twentytwenty/js/jquery.event.move.js', __FILE__), array('jquery'), '1.0', true); wp_enqueue_script('twentytwenty-js', plugins_url('twentytwenty/js/jquery.twentytwenty.js', __FILE__), array('jquery'), '1.0', true); wp_enqueue_script('bc-co-js', plugins_url('twentytwenty/js/jquery.compare.js', __FILE__), array('jquery'), '1.0', true); wp_enqueue_style('foundation-css', plugins_url('twentytwenty/css/foundation.css', __FILE__)); wp_enqueue_style('twentytwenty-css', plugins_url('twentytwenty/css/twentytwenty.css', __FILE__), array('foundation-css'));}add_action('wp_enqueue_scripts', 'faf_compare_scripts_styles');/** * add scripts and styles to admin */function faf_compare_admin_scripts_styles(){ wp_enqueue_script('faf-compare-editor-js', plugins_url('editor/editor.js', __FILE__), array('jquery'), '1.0', true);}add_action('admin_enqueue_scripts', 'faf_compare_admin_scripts_styles');/** * add editor button */function faf_compare_add_media_button(){ echo '<a href="#" id="faf-compare-short" class="button">'.faf_compare_trans('FAF Compare').'</a>';}add_action('media_buttons', 'faf_compare_add_media_button', 101);/** * add short code * * @param $atts * @return string */function faf_compare( $atts ){ if (isset($atts['before']) && isset($atts['after'])) { $orientation = (isset($atts['orientation'])) ? $atts['orientation'] : 'horizontal'; $size = (isset($atts['size'])) ? $atts['size'] : 'thumbnail'; $before = $atts['before']; $after = $atts['after']; $html = '<div class="twentytwenty-container" data-orientation="'.$orientation.'">'; $html .= wp_get_attachment_image($before, $size); $html .= wp_get_attachment_image($after, $size); $html .= '</div>'; return $html; }}add_shortcode('compare', 'faf_compare');/** * custom translation */function faf_compare_trans($string){ $locale = get_locale(); $lang = (!empty($locale)) ? $locale : WPLANG; $transFile = dirname(__FILE__).'/lang/'.$lang.'.php'; if (is_file($transFile)) { $translation = include($transFile); if (array_key_exists($string, $translation)) { return $translation[$string]; } } return $string;}
Expand Down
1 change: 1 addition & 0 deletions lang/de_DE.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?phpreturn array( 'FAF Compare' => 'FAF Vergleich');
Expand Down
1 change: 1 addition & 0 deletions lang/en_US.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?phpreturn array();
Expand Down
4 changes: 4 additions & 0 deletions twentytwenty/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.DS_Store
.sass-cache/*
components/*
*.old
4 changes: 4 additions & 0 deletions twentytwenty/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "compass"
gem "zurb-foundation", "~> 4.2.1"
19 changes: 19 additions & 0 deletions twentytwenty/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
chunky_png (1.2.8)
compass (0.12.2)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
fssm (0.2.10)
sass (3.2.9)
zurb-foundation (4.2.1)
sass (>= 3.2.0)

PLATFORMS
ruby

DEPENDENCIES
compass
zurb-foundation (~> 4.2.1)
101 changes: 101 additions & 0 deletions twentytwenty/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
## Basic usage

Include the javascript and css files.

```html
<script src="js/jquery-2.1.0.min.js" type="text/javascript"></script>
<script src="js/jquery.event.move.js" type="text/javascript"></script>
<script src="js/jquery.twentytwenty.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/twentytwenty.css" type="text/css" media="screen" />
```
You might need to change the paths to match your setup.


After including the files you are ready to create a container that holds two images:

```html
<div id="container1">
<!-- The before image is first -->
<img src="http://placehold.it/400x200&text=1" />
<!-- The after image is last -->
<img src="http://placehold.it/400x200&text=2" />
</div>
```

Now initialize the plugin on the window load:

```
$(window).load(function(){
$("#container1").twentytwenty();
});
```

### Options


```js
$(window).load(function(){
$(".twentytwenty-container").twentytwenty({
default_offset_pct: 0.7, // How much of the before image is visible when the page loads
orientation: 'vertical' // Orientation of the before and after images ('horizontal' or 'vertical')
});
});
```

### Prevent FOUC

If you want to avoid a [FOUC](http://en.wikipedia.org/wiki/Flash_of_unstyled_content) you can append the `twentytwenty-container` class to your container like so:

```html
<div id="container1" class="twentytwenty-container">
<!-- The before image is first -->
<img src="http://placehold.it/400x200&text=1" />
<!-- The after image is last -->
<img src="http://placehold.it/400x200&text=2" />
</div>
```

### Multiple instances

If you want to use multiple instances of this plugin on a single page you can target the container class:

```js
$(window).load(function(){
$(".twentytwenty-container").twentytwenty();
});
```

# Compass Quickstart

Run the following commands to get up and running quickly:

```bash
git clone [email protected]:zurb/compareit.git ~/Sites/compareit
cd compareit
bundle install
bundle exec compass compile
```

All default [Sass](http://sass-lang.com/) variables can be found in `scss/twentytwenty.scss`.

## Support

- IE8+
- Firefox (latest)
- Chrome
- Safari
- Android
- iOS (iPhone, iPad)

## Dependencies

* [jquery](http://jquery.com/)
* [jquery.event.move](https://github.com/stephband/jquery.event.move)

## MIT Open Source License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 changes: 26 additions & 0 deletions twentytwenty/config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Require any additional compass plugins here.
require "zurb-foundation"

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "scss"
images_dir = "img"
javascripts_dir = "js"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
output_style = :nested

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
Loading

0 comments on commit 3c9ea5e

Please sign in to comment.