This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Frank Fiebig
committed
Oct 7, 2016
1 parent
a9db8f1
commit 3c9ea5e
Showing
32 changed files
with
1,952 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?phpreturn array( 'FAF Compare' => 'FAF Vergleich'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?phpreturn array(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.DS_Store | ||
.sass-cache/* | ||
components/* | ||
*.old |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.