Depuración y preparación de plantilla
This commit is contained in:
4
resources/public/vendor/twentytwenty/Gemfile
vendored
4
resources/public/vendor/twentytwenty/Gemfile
vendored
@ -1,4 +0,0 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "compass"
|
||||
gem "zurb-foundation", "~> 4.2.1"
|
@ -1,19 +0,0 @@
|
||||
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)
|
26
resources/public/vendor/twentytwenty/config.rb
vendored
26
resources/public/vendor/twentytwenty/config.rb
vendored
@ -1,26 +0,0 @@
|
||||
# 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
|
75
resources/public/vendor/twentytwenty/index.html
vendored
75
resources/public/vendor/twentytwenty/index.html
vendored
@ -1,75 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
||||
<!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
|
||||
<!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
|
||||
<!--[if IE 8 ]> <html class="lt-ie9" lang="en"> <![endif]-->
|
||||
<!--[if IE 9 ]> <html class="lt-ie10" lang="en"> <![endif]-->
|
||||
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>twentytwenty</title>
|
||||
<link href="css/foundation.css" rel="stylesheet" type="text/css" />
|
||||
<link href="css/twentytwenty.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="row" style="margin-top: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Basic Usage</h3>
|
||||
<p>Demonstrates basic usage of the plugin.</p>
|
||||
</div>
|
||||
<div class="large-8 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/1_1.jpg" />
|
||||
<img src="img/1_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="margin-top: 2em; margin-bottom: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Vertical Orientation</h3>
|
||||
<p>Demonstrates sliding up and down.</p>
|
||||
</div>
|
||||
<div class="large-8 columns">
|
||||
<div class="twentytwenty-container" data-orientation="vertical">
|
||||
<img src="img/1_1.jpg" />
|
||||
<img src="img/1_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="margin-bottom: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Side by side</h3>
|
||||
<p>Using multiple comparisons at once.</p>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/2_1.jpg" />
|
||||
<img src="img/2_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/3_1.jpg" />
|
||||
<img src="img/3_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script
|
||||
src="https://code.jquery.com/jquery-3.2.1.js"
|
||||
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="js/jquery.event.move.js"></script>
|
||||
<script src="js/jquery.twentytwenty.js"></script>
|
||||
<script>
|
||||
$(function(){
|
||||
$(".twentytwenty-container[data-orientation!='vertical']").twentytwenty({default_offset_pct: 0.7});
|
||||
$(".twentytwenty-container[data-orientation='vertical']").twentytwenty({default_offset_pct: 0.3, orientation: 'vertical'});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,24 +0,0 @@
|
||||
{
|
||||
"name": "zurb-twentytwenty",
|
||||
"version": "0.1.0",
|
||||
"description": "Zurb TwentyTwenty plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "ZURB",
|
||||
"license": "ISC",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zurb/twentytwenty"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-connect": "^0.9.0",
|
||||
"grunt-contrib-watch": "^0.6.1",
|
||||
"grunt-notify": "^0.4.1",
|
||||
"grunt-sass": "^1.1.0",
|
||||
"load-grunt-tasks": "^2.0.0"
|
||||
}
|
||||
}
|
@ -1,72 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
||||
<!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
|
||||
<!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
|
||||
<!--[if IE 8 ]> <html class="lt-ie9" lang="en"> <![endif]-->
|
||||
<!--[if IE 9 ]> <html class="lt-ie10" lang="en"> <![endif]-->
|
||||
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>twentytwenty</title>
|
||||
<link href="css/foundation.css" rel="stylesheet" type="text/css" />
|
||||
<link href="css/twentytwenty-no-compass.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="row" style="margin-top: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Basic Usage</h3>
|
||||
<p>Demonstrates basic usage of the plugin.</p>
|
||||
</div>
|
||||
<div class="large-8 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/1_1.jpg" />
|
||||
<img src="img/1_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="margin-top: 2em; margin-bottom: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Vertical Orientation</h3>
|
||||
<p>Demonstrates sliding up and down.</p>
|
||||
</div>
|
||||
<div class="large-8 columns">
|
||||
<div class="twentytwenty-container" data-orientation="vertical">
|
||||
<img src="img/1_1.jpg" />
|
||||
<img src="img/1_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="margin-bottom: 2em;">
|
||||
<div class="large-4 columns">
|
||||
<h3>Side by side</h3>
|
||||
<p>Using multiple comparisons at once.</p>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/2_1.jpg" />
|
||||
<img src="img/2_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<div class="twentytwenty-container">
|
||||
<img src="img/3_1.jpg" />
|
||||
<img src="img/3_2.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
||||
<script src="js/jquery.event.move.js"></script>
|
||||
<script src="js/jquery.twentytwenty.js"></script>
|
||||
<script>
|
||||
$(window).load(function(){
|
||||
$(".twentytwenty-container[data-orientation!='vertical']").twentytwenty({default_offset_pct: 0.7});
|
||||
$(".twentytwenty-container[data-orientation='vertical']").twentytwenty({default_offset_pct: 0.3, orientation: 'vertical'});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user