* in progress jcrop
This commit is contained in:
parent
3d072b3326
commit
086510df9f
|
|
@ -5,6 +5,7 @@
|
|||
context.JK = context.JK || {};
|
||||
context.JK.AccountScreen = function(app) {
|
||||
var logger = context.JK.logger;
|
||||
var rest = context.JK.Rest(app);
|
||||
var userId;
|
||||
var user = {};
|
||||
|
||||
|
|
@ -23,18 +24,6 @@
|
|||
$('#account-content-scroller form .error').removeClass("error")
|
||||
}
|
||||
|
||||
function getUserDetail() {
|
||||
|
||||
var url = "/api/users/" + context.JK.currentUserId;
|
||||
return $.ajax({
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
url: url,
|
||||
async: true,
|
||||
processData: false
|
||||
});
|
||||
}
|
||||
|
||||
function populateAccount(userDetail) {
|
||||
var template= context.JK.fillTemplate($('#template-account-main').html(), {
|
||||
email: userDetail.email,
|
||||
|
|
@ -73,7 +62,7 @@
|
|||
}
|
||||
|
||||
function renderAccount() {
|
||||
getUserDetail()
|
||||
rest.getUserDetail()
|
||||
.done(populateAccount)
|
||||
.error(app.ajaxError)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
context.JK = context.JK || {};
|
||||
context.JK.AccountIdentityScreen = function(app) {
|
||||
var logger = context.JK.logger;
|
||||
var rest = context.JK.Rest(app);
|
||||
var userId;
|
||||
var user = {};
|
||||
|
||||
|
|
@ -23,18 +24,6 @@
|
|||
$('#account-identity-content-scroller form .error').removeClass("error")
|
||||
}
|
||||
|
||||
function getUserDetail() {
|
||||
|
||||
var url = "/api/users/" + context.JK.currentUserId;
|
||||
return $.ajax({
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
url: url,
|
||||
async: true,
|
||||
processData: false
|
||||
});
|
||||
}
|
||||
|
||||
function populateAccountIdentity(userDetail) {
|
||||
var template = context.JK.fillTemplate($('#template-account-identity').html(), {
|
||||
email: userDetail.email
|
||||
|
|
@ -78,7 +67,7 @@
|
|||
}
|
||||
|
||||
function renderAccountIdentity() {
|
||||
getUserDetail()
|
||||
rest.getUserDetail()
|
||||
.done(populateAccountIdentity)
|
||||
.error(app.ajaxError);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
context.JK = context.JK || {};
|
||||
context.JK.AccountProfileScreen = function(app) {
|
||||
var logger = context.JK.logger;
|
||||
var api = context.JK.API(app);
|
||||
var api = context.JK.Rest(app);
|
||||
var userId;
|
||||
var user = {};
|
||||
var recentUserDetail = null;
|
||||
|
|
@ -138,6 +138,7 @@
|
|||
$('#account-profile-content-scroller').on('click', '#account-edit-profile-submit', function(evt) { evt.stopPropagation(); handleUpdateProfile(); return false; } );
|
||||
$('#account-profile-content-scroller').on('submit', '#account-edit-email-form', function(evt) { evt.stopPropagation(); handleUpdateProfile(); return false; } );
|
||||
$('#account-profile-content-scroller').on('change', 'select[name=region]', function(evt) { evt.stopPropagation(); handleRegionChanged(); return false; } );
|
||||
$('#account-profile-content-scroller').on('click', '#account-change-avatar', function(evt) { evt.stopPropagation(); navToAvatar(); return false; } );
|
||||
}
|
||||
|
||||
function renderAccountProfile() {
|
||||
|
|
@ -188,6 +189,11 @@
|
|||
window.location = '#/account';
|
||||
}
|
||||
|
||||
function navToAvatar() {
|
||||
resetForm();
|
||||
window.location = '#/account/profile/avatar';
|
||||
}
|
||||
|
||||
function handleUpdateProfile() {
|
||||
|
||||
resetForm();
|
||||
|
|
|
|||
|
|
@ -0,0 +1,115 @@
|
|||
(function(context,$) {
|
||||
|
||||
"use strict";
|
||||
|
||||
context.JK = context.JK || {};
|
||||
context.JK.AccountProfileAvatarScreen = function(app) {
|
||||
var logger = context.JK.logger;
|
||||
var rest = context.JK.Rest(app);
|
||||
var userId;
|
||||
var user = {};
|
||||
var tmpUploadPath = null;
|
||||
var userDetail = null;
|
||||
|
||||
function beforeShow(data) {
|
||||
userId = data.id;
|
||||
}
|
||||
|
||||
function afterShow(data) {
|
||||
resetForm();
|
||||
renderAvatarScreen()
|
||||
}
|
||||
|
||||
function resetForm() {
|
||||
// remove all display errors
|
||||
$('#account-profile-avatar-content-scroller form .error-text').remove()
|
||||
$('#account-profile-avatar-content-scroller form .error').removeClass("error")
|
||||
}
|
||||
|
||||
function populateAvatar(userDetail) {
|
||||
this.userDetail = userDetail;
|
||||
var template= context.JK.fillTemplate($('#template-account-profile-avatar').html(), {
|
||||
"fp_apikey" : gon.fp_apikey,
|
||||
"data-fp-store-path" : gon.fp_upload_dir + '/tmp/' + userDetail.id + '/'
|
||||
});
|
||||
$('#account-profile-avatar-content-scroller').html(template);
|
||||
|
||||
|
||||
// prefer tmpUploadPath if it is set; otherwise use the user account's photo_url
|
||||
// renderAvatar(tmpUploadPath ? tmpUploadPath : userDetail.photo_url);
|
||||
//renderAvatar(null);
|
||||
renderAvatar('public/avatars/tmp/fbcdfef5-202c-4a7f-bf56-b72e06c61208/FxUUqWP9Qcm7roWZszLs_confirm_email_page.png')
|
||||
}
|
||||
|
||||
// events for main screen
|
||||
function events() {
|
||||
// wire up main panel clicks
|
||||
$('#account-profile-avatar-content-scroller').on('click', '#account-edit-avatar-cancel', function(evt) { evt.stopPropagation(); navToEditProfile(); return false; } );
|
||||
$('#account-profile-avatar-content-scroller').on('click', '#account-edit-avatar-submit', function(evt) { evt.stopPropagation(); handleUpdateEmail(); return false; } );
|
||||
$('#account-profile-avatar-content-scroller').on('change', 'input[type=filepicker-dragdrop]', function(evt) { evt.stopPropagation(); afterImageUpload(evt); return false; } );
|
||||
}
|
||||
|
||||
function renderAvatarScreen() {
|
||||
rest.getUserDetail()
|
||||
.done(populateAvatar)
|
||||
.error(app.ajaxError)
|
||||
}
|
||||
|
||||
function navToEditProfile() {
|
||||
resetForm()
|
||||
window.location = '#/account/profile'
|
||||
}
|
||||
|
||||
function renderAvatar(path) {
|
||||
|
||||
// clear out
|
||||
var avatarSpace = $('#account-profile-avatar-content-scroller .account-profile-avatar .avatar-space');
|
||||
avatarSpace.children().remove();
|
||||
|
||||
if(!path) {
|
||||
// no avatar found for account
|
||||
var noAvatarSpace = $('<div></div>');
|
||||
noAvatarSpace.addClass('no-avatar-space');
|
||||
noAvatarSpace.text('Please upload a photo');
|
||||
avatarSpace.append(noAvatarSpace);
|
||||
}
|
||||
else {
|
||||
// create a s3 shared link
|
||||
rest.getPhotoUrl({
|
||||
photo_path : path })
|
||||
.done(function(response) {
|
||||
var photo_url = response.photo_url;
|
||||
var avatar = $('<img/>');
|
||||
avatar.attr('src', photo_url);
|
||||
avatar.attr('alt', 'profile avatar')
|
||||
|
||||
avatarSpace.append(avatar);
|
||||
avatar.Jcrop();
|
||||
|
||||
})
|
||||
.error(app.ajaxError);
|
||||
}
|
||||
}
|
||||
|
||||
function afterImageUpload(event) {
|
||||
tmpUploadPath = event.originalEvent.fpfile.key;
|
||||
|
||||
renderAvatar(tmpUploadPath);
|
||||
}
|
||||
|
||||
function initialize() {
|
||||
var screenBindings = {
|
||||
'beforeShow': beforeShow,
|
||||
'afterShow': afterShow
|
||||
};
|
||||
app.bindScreen('account/profile/avatar', screenBindings);
|
||||
events();
|
||||
}
|
||||
|
||||
this.initialize = initialize;
|
||||
this.beforeShow = beforeShow;
|
||||
this.afterShow = afterShow;
|
||||
return this;
|
||||
};
|
||||
|
||||
})(window,jQuery);
|
||||
|
|
@ -12,5 +12,7 @@
|
|||
//
|
||||
//= require jquery
|
||||
//= require jquery_ujs
|
||||
//= require jquery.color
|
||||
//= require jquery.Jcrop
|
||||
//= require bootstrap
|
||||
//= require_tree .
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"use strict";
|
||||
|
||||
context.JK = context.JK || {};
|
||||
context.JK.API = function(app) {
|
||||
context.JK.Rest = function(app) {
|
||||
|
||||
var self = this;
|
||||
var logger = context.JK.logger;
|
||||
|
|
@ -65,6 +65,21 @@
|
|||
});
|
||||
}
|
||||
|
||||
function getPhotoUrl(options) {
|
||||
var id = options && options["id"]
|
||||
|
||||
if(!id) {
|
||||
id = context.JK.currentUserId;
|
||||
}
|
||||
|
||||
var photo_path = options['photo_path']
|
||||
|
||||
return $.ajax('/api/users/' + id + '/photo_url', {
|
||||
data : { photo_path : photo_path },
|
||||
dataType : 'json'
|
||||
});
|
||||
}
|
||||
|
||||
function initialize() {
|
||||
return self;
|
||||
}
|
||||
|
|
@ -76,6 +91,7 @@
|
|||
this.getRegions = getRegions;
|
||||
this.getIsps = getIsps;
|
||||
this.getInstruments = getInstruments
|
||||
this.getPhotoUrl = getPhotoUrl;
|
||||
|
||||
return this;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
#account-content-scroller, #account-identity-content-scroller, #account-profile-content-scroller {
|
||||
@import 'common.css.scss';
|
||||
|
||||
#account-content-scroller, #account-identity-content-scroller, #account-profile-content-scroller, #account-profile-avatar-content-scroller {
|
||||
|
||||
.content-wrapper {
|
||||
padding:10px 35px;
|
||||
|
|
@ -73,6 +75,39 @@
|
|||
border-spacing: 6px;
|
||||
}
|
||||
|
||||
|
||||
.account-profile-avatar {
|
||||
|
||||
.avatar-space {
|
||||
color: $color2;
|
||||
//-webkit-border-radius: 7px;
|
||||
//border-radius: 7px;
|
||||
//padding:2px 2px 2px 4px;
|
||||
max-height:70%;
|
||||
max-width:50%;
|
||||
|
||||
img {
|
||||
border:1px dotted $color2;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.no-avatar-space {
|
||||
border:1px dotted $color2;
|
||||
|
||||
color: $color2;
|
||||
width:300px;
|
||||
height:300px;
|
||||
line-height: 300px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
background-color:$ColorTextBoxBackground;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ class ApiUsersController < ApiController
|
|||
:friend_show, :friend_destroy, # friends
|
||||
:notification_index, :notification_destroy, # notifications
|
||||
:band_invitation_index, :band_invitation_show, :band_invitation_update, # band invitations
|
||||
:set_password, :begin_update_email]
|
||||
:set_password, :begin_update_email, :exchange_photo_path]
|
||||
|
||||
respond_to :json
|
||||
|
||||
|
|
@ -421,6 +421,13 @@ class ApiUsersController < ApiController
|
|||
respond_with current_user, responder: ApiResponder, status: 200
|
||||
end
|
||||
|
||||
def exchange_photo_path
|
||||
photo_path = params[:photo_path]
|
||||
|
||||
render :json => { :photo_url => S3Util.url(Rails.application.config.aws_bucket, photo_path, :secure => false) }, status: 200
|
||||
end
|
||||
|
||||
|
||||
###################### RECORDINGS #######################
|
||||
# def recording_index
|
||||
# @recordings = User.recording_index(current_user, params[:id])
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ class ClientsController < ApplicationController
|
|||
# use gon to pass variables into javascript
|
||||
gon.websocket_gateway_uri = Rails.application.config.websocket_gateway_uri
|
||||
gon.check_for_client_updates = Rails.application.config.check_for_client_updates
|
||||
gon.fp_apikey = Rails.application.config.filepicker_rails.api_key
|
||||
gon.fp_upload_dir = Rails.application.config.filepicker_upload_dir
|
||||
|
||||
if current_user
|
||||
render :layout => 'client'
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
<td valign="top" width="33%"> <!-- TODO -->
|
||||
<div class="right mr30"><!--<a href="#" class="avatar_large ml10"><img src="images/shared/avatar_jonathon.png" width="246" height="246" /></a>--><br clear="left" />
|
||||
<a href="#" class="small">Change Avatar</a></div>
|
||||
<a href="#" class="small" id="account-change-avatar">Change Avatar</a></div>
|
||||
<h2>profile:</h2>
|
||||
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,56 @@
|
|||
<!-- Account Summary Dialog -->
|
||||
<div layout="screen" layout-id="account/profile/avatar" class="screen secondary">
|
||||
<!-- header -->
|
||||
<div class="content-head">
|
||||
|
||||
<!-- icon -->
|
||||
<div class="content-icon">
|
||||
<%= image_tag "content/icon_home.png", {:width => 27, :height => 20} %>
|
||||
</div>
|
||||
|
||||
<!-- section head text -->
|
||||
<h1>my account</h1>
|
||||
|
||||
<!-- section navigation -->
|
||||
<div class="content-nav">
|
||||
<a href="#" class="home-icon"><%= image_tag "content/icon_home.png", {:width => 20, :height => 15} %></a>
|
||||
<a class="arrow-left" href="#"></a>
|
||||
<a class="arrow-right op50" href="#"></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- end header -->
|
||||
|
||||
<!-- profile scrolling area -->
|
||||
<div id="account-profile-avatar-content-scroller" class="content-scroller">
|
||||
|
||||
</div>
|
||||
<!-- end content scrolling area -->
|
||||
</div>
|
||||
|
||||
<script type="text/template" id="template-account-profile-avatar">
|
||||
<!-- content wrapper -->
|
||||
<div class="content-wrapper account-profile-avatar">
|
||||
<br />
|
||||
|
||||
<div class="avatar-space"></div>
|
||||
|
||||
<form id="account-edit-avatar-form">
|
||||
<input type="filepicker-dragdrop" data-fp-apikey="{fp_apikey}" data-fp-mimetypes="*/*" data-fp-container="modal" data-fp-button-class="button-orange" data-fp-store-path="{data-fp-store-path}" data-fp-store-access="public">
|
||||
</form>
|
||||
|
||||
<br clear="all" />
|
||||
<div class="right"><a id="account-edit-avatar-cancel" href="#" class="button-grey">CANCEL</a> <a id="account-edit-avatar-submit" href="#" class="button-orange">UPDATE AVATAR</a></div>
|
||||
</div>
|
||||
<!-- end content wrapper -->
|
||||
|
||||
|
||||
<script type="text/javascript" src="//api.filepicker.io/v1/filepicker.js"></script>
|
||||
</script>
|
||||
|
||||
<script type="text/template" id="account-profile-instrument">
|
||||
<tr data-instrument-id='{id}'>
|
||||
<td><input type="checkbox" {checked} />{description}</td>
|
||||
<td align="right" width="50%"><select name="proficiency" class='proficiency_selector'><option value="1">Beginner</option><option value="2">Intermediate</option><option value="3">Expert</option></select></td>
|
||||
</tr>
|
||||
</script>
|
||||
|
|
@ -23,6 +23,7 @@
|
|||
<%= render "account" %>
|
||||
<%= render "account_identity" %>
|
||||
<%= render "account_profile" %>
|
||||
<%= render "account_profile_avatar" %>
|
||||
<%= render "notify" %>
|
||||
<%= render "client_update" %>
|
||||
<%= render "overlay_small" %>
|
||||
|
|
@ -102,6 +103,9 @@
|
|||
var accountProfileScreen = new JK.AccountProfileScreen(JK.app);
|
||||
accountProfileScreen.initialize();
|
||||
|
||||
var accountProfileAvatarScreen = new JK.AccountProfileAvatarScreen(JK.app);
|
||||
accountProfileAvatarScreen.initialize();
|
||||
|
||||
var searchResultScreen = new JK.SearchResultScreen(JK.app);
|
||||
searchResultScreen.initialize();
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
<%= stylesheet_link_tag "client/sessionList", media: "all" %>
|
||||
<%= stylesheet_link_tag "client/searchResults", media: "all" %>
|
||||
<%= stylesheet_link_tag "client/clientUpdate", media: "all" %>
|
||||
<%= stylesheet_link_tag "jquery.Jcrop", media: "all" %>
|
||||
<%= include_gon %>
|
||||
<%= javascript_include_tag "application" %>
|
||||
<%= csrf_meta_tags %>
|
||||
|
|
|
|||
|
|
@ -78,8 +78,8 @@ if defined?(Bundler)
|
|||
config.rabbitmq_host = "localhost"
|
||||
config.rabbitmq_port = 5672
|
||||
|
||||
# API key for filepicker.io gem
|
||||
config.filepicker_rails.api_key = "AhUoVoBZSLirP3esyCl7Zz"
|
||||
# filepicker app configured to use S3 bucket jamkazam-dev
|
||||
config.filepicker_rails.api_key = "Asx4wh6GSlmpAAzoM0Cunz"
|
||||
|
||||
config.recaptcha_enable = false
|
||||
|
||||
|
|
@ -121,5 +121,7 @@ if defined?(Bundler)
|
|||
|
||||
# client update killswitch; turn on if client updates are broken and are affecting users
|
||||
config.check_for_client_updates = true;
|
||||
|
||||
config.filepicker_upload_dir = 'public/avatars'
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -54,6 +54,5 @@ SampleApp::Application.configure do
|
|||
config.websocket_gateway_connect_time_expire = 180
|
||||
config.websocket_gateway_internal_debug = false
|
||||
config.websocket_gateway_port = 6777
|
||||
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -75,4 +75,7 @@ SampleApp::Application.configure do
|
|||
|
||||
# run websocket-gateway embedded
|
||||
config.websocket_gateway_enable = false
|
||||
|
||||
# filepicker app configured to use S3 bucket jamkazam
|
||||
config.filepicker_rails.api_key = "AhUoVoBZSLirP3esyCl7Zz"
|
||||
end
|
||||
|
|
|
|||
|
|
@ -143,6 +143,8 @@ SampleApp::Application.routes.draw do
|
|||
match '/users/:id/update_email' => 'api_users#begin_update_email', :via => :post, :as => 'begin_update_email'
|
||||
match '/users/update_email/:token' => 'api_users#finalize_update_email', :via => :post, :as => 'finalize_update_email'
|
||||
|
||||
# user profile
|
||||
match '/users/:id/photo_url' => 'api_users#exchange_photo_path', :via => :get
|
||||
|
||||
# user recordings
|
||||
# match '/users/:id/recordings' => 'api_users#recording_index', :via => :get
|
||||
|
|
@ -234,5 +236,6 @@ SampleApp::Application.routes.draw do
|
|||
# version check for JamClient
|
||||
match '/versioncheck' => 'artifacts#versioncheck'
|
||||
|
||||
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ Spork.prefork do
|
|||
DatabaseCleaner.strategy = :truncation, {:except => %w[instruments genres] }
|
||||
|
||||
if example.metadata[:js]
|
||||
#page.driver.resize(1920, 1080)
|
||||
page.driver.resize(1920, 1080)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 329 B |
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,661 @@
|
|||
/*!
|
||||
* jQuery Color Animations v2.0pre
|
||||
* http://jquery.org/
|
||||
*
|
||||
* Copyright 2011 John Resig
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
(function( jQuery, undefined ){
|
||||
var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color outlineColor".split(" "),
|
||||
|
||||
// plusequals test for += 100 -= 100
|
||||
rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
|
||||
// a set of RE's that can match strings and generate color tuples.
|
||||
stringParsers = [{
|
||||
re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
|
||||
parse: function( execResult ) {
|
||||
return [
|
||||
execResult[ 1 ],
|
||||
execResult[ 2 ],
|
||||
execResult[ 3 ],
|
||||
execResult[ 4 ]
|
||||
];
|
||||
}
|
||||
}, {
|
||||
re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
|
||||
parse: function( execResult ) {
|
||||
return [
|
||||
2.55 * execResult[1],
|
||||
2.55 * execResult[2],
|
||||
2.55 * execResult[3],
|
||||
execResult[ 4 ]
|
||||
];
|
||||
}
|
||||
}, {
|
||||
re: /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/,
|
||||
parse: function( execResult ) {
|
||||
return [
|
||||
parseInt( execResult[ 1 ], 16 ),
|
||||
parseInt( execResult[ 2 ], 16 ),
|
||||
parseInt( execResult[ 3 ], 16 )
|
||||
];
|
||||
}
|
||||
}, {
|
||||
re: /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/,
|
||||
parse: function( execResult ) {
|
||||
return [
|
||||
parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
|
||||
parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
|
||||
parseInt( execResult[ 3 ] + execResult[ 3 ], 16 )
|
||||
];
|
||||
}
|
||||
}, {
|
||||
re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
|
||||
space: "hsla",
|
||||
parse: function( execResult ) {
|
||||
return [
|
||||
execResult[1],
|
||||
execResult[2] / 100,
|
||||
execResult[3] / 100,
|
||||
execResult[4]
|
||||
];
|
||||
}
|
||||
}],
|
||||
|
||||
// jQuery.Color( )
|
||||
color = jQuery.Color = function( color, green, blue, alpha ) {
|
||||
return new jQuery.Color.fn.parse( color, green, blue, alpha );
|
||||
},
|
||||
spaces = {
|
||||
rgba: {
|
||||
cache: "_rgba",
|
||||
props: {
|
||||
red: {
|
||||
idx: 0,
|
||||
type: "byte",
|
||||
empty: true
|
||||
},
|
||||
green: {
|
||||
idx: 1,
|
||||
type: "byte",
|
||||
empty: true
|
||||
},
|
||||
blue: {
|
||||
idx: 2,
|
||||
type: "byte",
|
||||
empty: true
|
||||
},
|
||||
alpha: {
|
||||
idx: 3,
|
||||
type: "percent",
|
||||
def: 1
|
||||
}
|
||||
}
|
||||
},
|
||||
hsla: {
|
||||
cache: "_hsla",
|
||||
props: {
|
||||
hue: {
|
||||
idx: 0,
|
||||
type: "degrees",
|
||||
empty: true
|
||||
},
|
||||
saturation: {
|
||||
idx: 1,
|
||||
type: "percent",
|
||||
empty: true
|
||||
},
|
||||
lightness: {
|
||||
idx: 2,
|
||||
type: "percent",
|
||||
empty: true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
propTypes = {
|
||||
"byte": {
|
||||
floor: true,
|
||||
min: 0,
|
||||
max: 255
|
||||
},
|
||||
"percent": {
|
||||
min: 0,
|
||||
max: 1
|
||||
},
|
||||
"degrees": {
|
||||
mod: 360,
|
||||
floor: true
|
||||
}
|
||||
},
|
||||
rgbaspace = spaces.rgba.props,
|
||||
support = color.support = {},
|
||||
|
||||
// colors = jQuery.Color.names
|
||||
colors,
|
||||
|
||||
// local aliases of functions called often
|
||||
each = jQuery.each;
|
||||
|
||||
spaces.hsla.props.alpha = rgbaspace.alpha;
|
||||
|
||||
function clamp( value, prop, alwaysAllowEmpty ) {
|
||||
var type = propTypes[ prop.type ] || {},
|
||||
allowEmpty = prop.empty || alwaysAllowEmpty;
|
||||
|
||||
if ( allowEmpty && value == null ) {
|
||||
return null;
|
||||
}
|
||||
if ( prop.def && value == null ) {
|
||||
return prop.def;
|
||||
}
|
||||
if ( type.floor ) {
|
||||
value = ~~value;
|
||||
} else {
|
||||
value = parseFloat( value );
|
||||
}
|
||||
if ( value == null || isNaN( value ) ) {
|
||||
return prop.def;
|
||||
}
|
||||
if ( type.mod ) {
|
||||
value = value % type.mod;
|
||||
// -10 -> 350
|
||||
return value < 0 ? type.mod + value : value;
|
||||
}
|
||||
|
||||
// for now all property types without mod have min and max
|
||||
return type.min > value ? type.min : type.max < value ? type.max : value;
|
||||
}
|
||||
|
||||
function stringParse( string ) {
|
||||
var inst = color(),
|
||||
rgba = inst._rgba = [];
|
||||
|
||||
string = string.toLowerCase();
|
||||
|
||||
each( stringParsers, function( i, parser ) {
|
||||
var match = parser.re.exec( string ),
|
||||
values = match && parser.parse( match ),
|
||||
parsed,
|
||||
spaceName = parser.space || "rgba",
|
||||
cache = spaces[ spaceName ].cache;
|
||||
|
||||
|
||||
if ( values ) {
|
||||
parsed = inst[ spaceName ]( values );
|
||||
|
||||
// if this was an rgba parse the assignment might happen twice
|
||||
// oh well....
|
||||
inst[ cache ] = parsed[ cache ];
|
||||
rgba = inst._rgba = parsed._rgba;
|
||||
|
||||
// exit each( stringParsers ) here because we matched
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// Found a stringParser that handled it
|
||||
if ( rgba.length !== 0 ) {
|
||||
|
||||
// if this came from a parsed string, force "transparent" when alpha is 0
|
||||
// chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
|
||||
if ( Math.max.apply( Math, rgba ) === 0 ) {
|
||||
jQuery.extend( rgba, colors.transparent );
|
||||
}
|
||||
return inst;
|
||||
}
|
||||
|
||||
// named colors / default - filter back through parse function
|
||||
if ( string = colors[ string ] ) {
|
||||
return string;
|
||||
}
|
||||
}
|
||||
|
||||
color.fn = color.prototype = {
|
||||
constructor: color,
|
||||
parse: function( red, green, blue, alpha ) {
|
||||
if ( red === undefined ) {
|
||||
this._rgba = [ null, null, null, null ];
|
||||
return this;
|
||||
}
|
||||
if ( red instanceof jQuery || red.nodeType ) {
|
||||
red = red instanceof jQuery ? red.css( green ) : jQuery( red ).css( green );
|
||||
green = undefined;
|
||||
}
|
||||
|
||||
var inst = this,
|
||||
type = jQuery.type( red ),
|
||||
rgba = this._rgba = [],
|
||||
source;
|
||||
|
||||
// more than 1 argument specified - assume ( red, green, blue, alpha )
|
||||
if ( green !== undefined ) {
|
||||
red = [ red, green, blue, alpha ];
|
||||
type = "array";
|
||||
}
|
||||
|
||||
if ( type === "string" ) {
|
||||
return this.parse( stringParse( red ) || colors._default );
|
||||
}
|
||||
|
||||
if ( type === "array" ) {
|
||||
each( rgbaspace, function( key, prop ) {
|
||||
rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
|
||||
});
|
||||
return this;
|
||||
}
|
||||
|
||||
if ( type === "object" ) {
|
||||
if ( red instanceof color ) {
|
||||
each( spaces, function( spaceName, space ) {
|
||||
if ( red[ space.cache ] ) {
|
||||
inst[ space.cache ] = red[ space.cache ].slice();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
each( spaces, function( spaceName, space ) {
|
||||
each( space.props, function( key, prop ) {
|
||||
var cache = space.cache;
|
||||
|
||||
// if the cache doesn't exist, and we know how to convert
|
||||
if ( !inst[ cache ] && space.to ) {
|
||||
|
||||
// if the value was null, we don't need to copy it
|
||||
// if the key was alpha, we don't need to copy it either
|
||||
if ( red[ key ] == null || key === "alpha") {
|
||||
return;
|
||||
}
|
||||
inst[ cache ] = space.to( inst._rgba );
|
||||
}
|
||||
|
||||
// this is the only case where we allow nulls for ALL properties.
|
||||
// call clamp with alwaysAllowEmpty
|
||||
inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
|
||||
});
|
||||
});
|
||||
}
|
||||
return this;
|
||||
}
|
||||
},
|
||||
is: function( compare ) {
|
||||
var is = color( compare ),
|
||||
same = true,
|
||||
myself = this;
|
||||
|
||||
each( spaces, function( _, space ) {
|
||||
var isCache = is[ space.cache ],
|
||||
localCache;
|
||||
if (isCache) {
|
||||
localCache = myself[ space.cache ] || space.to && space.to( myself._rgba ) || [];
|
||||
each( space.props, function( _, prop ) {
|
||||
if ( isCache[ prop.idx ] != null ) {
|
||||
same = ( isCache[ prop.idx ] === localCache[ prop.idx ] );
|
||||
return same;
|
||||
}
|
||||
});
|
||||
}
|
||||
return same;
|
||||
});
|
||||
return same;
|
||||
},
|
||||
_space: function() {
|
||||
var used = [],
|
||||
inst = this;
|
||||
each( spaces, function( spaceName, space ) {
|
||||
if ( inst[ space.cache ] ) {
|
||||
used.push( spaceName );
|
||||
}
|
||||
});
|
||||
return used.pop();
|
||||
},
|
||||
transition: function( other, distance ) {
|
||||
var end = color( other ),
|
||||
spaceName = end._space(),
|
||||
space = spaces[ spaceName ],
|
||||
start = this[ space.cache ] || space.to( this._rgba ),
|
||||
result = start.slice();
|
||||
|
||||
end = end[ space.cache ];
|
||||
each( space.props, function( key, prop ) {
|
||||
var index = prop.idx,
|
||||
startValue = start[ index ],
|
||||
endValue = end[ index ],
|
||||
type = propTypes[ prop.type ] || {};
|
||||
|
||||
// if null, don't override start value
|
||||
if ( endValue === null ) {
|
||||
return;
|
||||
}
|
||||
// if null - use end
|
||||
if ( startValue === null ) {
|
||||
result[ index ] = endValue;
|
||||
} else {
|
||||
if ( type.mod ) {
|
||||
if ( endValue - startValue > type.mod / 2 ) {
|
||||
startValue += type.mod;
|
||||
} else if ( startValue - endValue > type.mod / 2 ) {
|
||||
startValue -= type.mod;
|
||||
}
|
||||
}
|
||||
result[ prop.idx ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
|
||||
}
|
||||
});
|
||||
return this[ spaceName ]( result );
|
||||
},
|
||||
blend: function( opaque ) {
|
||||
// if we are already opaque - return ourself
|
||||
if ( this._rgba[ 3 ] === 1 ) {
|
||||
return this;
|
||||
}
|
||||
|
||||
var rgb = this._rgba.slice(),
|
||||
a = rgb.pop(),
|
||||
blend = color( opaque )._rgba;
|
||||
|
||||
return color( jQuery.map( rgb, function( v, i ) {
|
||||
return ( 1 - a ) * blend[ i ] + a * v;
|
||||
}));
|
||||
},
|
||||
toRgbaString: function() {
|
||||
var prefix = "rgba(",
|
||||
rgba = jQuery.map( this._rgba, function( v, i ) {
|
||||
return v == null ? ( i > 2 ? 1 : 0 ) : v;
|
||||
});
|
||||
|
||||
if ( rgba[ 3 ] === 1 ) {
|
||||
rgba.pop();
|
||||
prefix = "rgb(";
|
||||
}
|
||||
|
||||
return prefix + rgba.join(",") + ")";
|
||||
},
|
||||
toHslaString: function() {
|
||||
var prefix = "hsla(",
|
||||
hsla = jQuery.map( this.hsla(), function( v, i ) {
|
||||
if ( v == null ) {
|
||||
v = i > 2 ? 1 : 0;
|
||||
}
|
||||
|
||||
// catch 1 and 2
|
||||
if ( i && i < 3 ) {
|
||||
v = Math.round( v * 100 ) + "%";
|
||||
}
|
||||
return v;
|
||||
});
|
||||
|
||||
if ( hsla[ 3 ] === 1 ) {
|
||||
hsla.pop();
|
||||
prefix = "hsl(";
|
||||
}
|
||||
return prefix + hsla.join(",") + ")";
|
||||
},
|
||||
toHexString: function( includeAlpha ) {
|
||||
var rgba = this._rgba.slice(),
|
||||
alpha = rgba.pop();
|
||||
|
||||
if ( includeAlpha ) {
|
||||
rgba.push( ~~( alpha * 255 ) );
|
||||
}
|
||||
|
||||
return "#" + jQuery.map( rgba, function( v, i ) {
|
||||
|
||||
// default to 0 when nulls exist
|
||||
v = ( v || 0 ).toString( 16 );
|
||||
return v.length === 1 ? "0" + v : v;
|
||||
}).join("");
|
||||
},
|
||||
toString: function() {
|
||||
return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
|
||||
}
|
||||
};
|
||||
color.fn.parse.prototype = color.fn;
|
||||
|
||||
// hsla conversions adapted from:
|
||||
// http://www.google.com/codesearch/p#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/inspector/front-end/Color.js&d=7&l=193
|
||||
|
||||
function hue2rgb( p, q, h ) {
|
||||
h = ( h + 1 ) % 1;
|
||||
if ( h * 6 < 1 ) {
|
||||
return p + (q - p) * 6 * h;
|
||||
}
|
||||
if ( h * 2 < 1) {
|
||||
return q;
|
||||
}
|
||||
if ( h * 3 < 2 ) {
|
||||
return p + (q - p) * ((2/3) - h) * 6;
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
spaces.hsla.to = function ( rgba ) {
|
||||
if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
|
||||
return [ null, null, null, rgba[ 3 ] ];
|
||||
}
|
||||
var r = rgba[ 0 ] / 255,
|
||||
g = rgba[ 1 ] / 255,
|
||||
b = rgba[ 2 ] / 255,
|
||||
a = rgba[ 3 ],
|
||||
max = Math.max( r, g, b ),
|
||||
min = Math.min( r, g, b ),
|
||||
diff = max - min,
|
||||
add = max + min,
|
||||
l = add * 0.5,
|
||||
h, s;
|
||||
|
||||
if ( min === max ) {
|
||||
h = 0;
|
||||
} else if ( r === max ) {
|
||||
h = ( 60 * ( g - b ) / diff ) + 360;
|
||||
} else if ( g === max ) {
|
||||
h = ( 60 * ( b - r ) / diff ) + 120;
|
||||
} else {
|
||||
h = ( 60 * ( r - g ) / diff ) + 240;
|
||||
}
|
||||
|
||||
if ( l === 0 || l === 1 ) {
|
||||
s = l;
|
||||
} else if ( l <= 0.5 ) {
|
||||
s = diff / add;
|
||||
} else {
|
||||
s = diff / ( 2 - add );
|
||||
}
|
||||
return [ Math.round(h) % 360, s, l, a == null ? 1 : a ];
|
||||
};
|
||||
|
||||
spaces.hsla.from = function ( hsla ) {
|
||||
if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
|
||||
return [ null, null, null, hsla[ 3 ] ];
|
||||
}
|
||||
var h = hsla[ 0 ] / 360,
|
||||
s = hsla[ 1 ],
|
||||
l = hsla[ 2 ],
|
||||
a = hsla[ 3 ],
|
||||
q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
|
||||
p = 2 * l - q,
|
||||
r, g, b;
|
||||
|
||||
return [
|
||||
Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
|
||||
Math.round( hue2rgb( p, q, h ) * 255 ),
|
||||
Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
|
||||
a
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
each( spaces, function( spaceName, space ) {
|
||||
var props = space.props,
|
||||
cache = space.cache,
|
||||
to = space.to,
|
||||
from = space.from;
|
||||
|
||||
// makes rgba() and hsla()
|
||||
color.fn[ spaceName ] = function( value ) {
|
||||
|
||||
// generate a cache for this space if it doesn't exist
|
||||
if ( to && !this[ cache ] ) {
|
||||
this[ cache ] = to( this._rgba );
|
||||
}
|
||||
if ( value === undefined ) {
|
||||
return this[ cache ].slice();
|
||||
}
|
||||
|
||||
var type = jQuery.type( value ),
|
||||
arr = ( type === "array" || type === "object" ) ? value : arguments,
|
||||
local = this[ cache ].slice(),
|
||||
ret;
|
||||
|
||||
each( props, function( key, prop ) {
|
||||
var val = arr[ type === "object" ? key : prop.idx ];
|
||||
if ( val == null ) {
|
||||
val = local[ prop.idx ];
|
||||
}
|
||||
local[ prop.idx ] = clamp( val, prop );
|
||||
});
|
||||
|
||||
if ( from ) {
|
||||
ret = color( from( local ) );
|
||||
ret[ cache ] = local;
|
||||
return ret;
|
||||
} else {
|
||||
return color( local );
|
||||
}
|
||||
};
|
||||
|
||||
// makes red() green() blue() alpha() hue() saturation() lightness()
|
||||
each( props, function( key, prop ) {
|
||||
// alpha is included in more than one space
|
||||
if ( color.fn[ key ] ) {
|
||||
return;
|
||||
}
|
||||
color.fn[ key ] = function( value ) {
|
||||
var vtype = jQuery.type( value ),
|
||||
fn = ( key === 'alpha' ? ( this._hsla ? 'hsla' : 'rgba' ) : spaceName ),
|
||||
local = this[ fn ](),
|
||||
cur = local[ prop.idx ],
|
||||
match;
|
||||
|
||||
if ( vtype === "undefined" ) {
|
||||
return cur;
|
||||
}
|
||||
|
||||
if ( vtype === "function" ) {
|
||||
value = value.call( this, cur );
|
||||
vtype = jQuery.type( value );
|
||||
}
|
||||
if ( value == null && prop.empty ) {
|
||||
return this;
|
||||
}
|
||||
if ( vtype === "string" ) {
|
||||
match = rplusequals.exec( value );
|
||||
if ( match ) {
|
||||
value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
|
||||
}
|
||||
}
|
||||
local[ prop.idx ] = value;
|
||||
return this[ fn ]( local );
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
// add .fx.step functions
|
||||
each( stepHooks, function( i, hook ) {
|
||||
jQuery.cssHooks[ hook ] = {
|
||||
set: function( elem, value ) {
|
||||
var parsed, backgroundColor, curElem;
|
||||
|
||||
if ( jQuery.type( value ) !== 'string' || ( parsed = stringParse( value ) ) )
|
||||
{
|
||||
value = color( parsed || value );
|
||||
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
|
||||
curElem = hook === "backgroundColor" ? elem.parentNode : elem;
|
||||
do {
|
||||
backgroundColor = jQuery.curCSS( curElem, "backgroundColor" );
|
||||
} while (
|
||||
( backgroundColor === "" || backgroundColor === "transparent" ) &&
|
||||
( curElem = curElem.parentNode ) &&
|
||||
curElem.style
|
||||
);
|
||||
|
||||
value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
|
||||
backgroundColor :
|
||||
"_default" );
|
||||
}
|
||||
|
||||
value = value.toRgbaString();
|
||||
}
|
||||
elem.style[ hook ] = value;
|
||||
}
|
||||
};
|
||||
jQuery.fx.step[ hook ] = function( fx ) {
|
||||
if ( !fx.colorInit ) {
|
||||
fx.start = color( fx.elem, hook );
|
||||
fx.end = color( fx.end );
|
||||
fx.colorInit = true;
|
||||
}
|
||||
jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
|
||||
};
|
||||
});
|
||||
|
||||
// detect rgba support
|
||||
jQuery(function() {
|
||||
var div = document.createElement( "div" ),
|
||||
div_style = div.style;
|
||||
|
||||
div_style.cssText = "background-color:rgba(1,1,1,.5)";
|
||||
support.rgba = div_style.backgroundColor.indexOf( "rgba" ) > -1;
|
||||
});
|
||||
|
||||
// Some named colors to work with
|
||||
// From Interface by Stefan Petre
|
||||
// http://interface.eyecon.ro/
|
||||
colors = jQuery.Color.names = {
|
||||
aqua: "#00ffff",
|
||||
azure: "#f0ffff",
|
||||
beige: "#f5f5dc",
|
||||
black: "#000000",
|
||||
blue: "#0000ff",
|
||||
brown: "#a52a2a",
|
||||
cyan: "#00ffff",
|
||||
darkblue: "#00008b",
|
||||
darkcyan: "#008b8b",
|
||||
darkgrey: "#a9a9a9",
|
||||
darkgreen: "#006400",
|
||||
darkkhaki: "#bdb76b",
|
||||
darkmagenta: "#8b008b",
|
||||
darkolivegreen: "#556b2f",
|
||||
darkorange: "#ff8c00",
|
||||
darkorchid: "#9932cc",
|
||||
darkred: "#8b0000",
|
||||
darksalmon: "#e9967a",
|
||||
darkviolet: "#9400d3",
|
||||
fuchsia: "#ff00ff",
|
||||
gold: "#ffd700",
|
||||
green: "#008000",
|
||||
indigo: "#4b0082",
|
||||
khaki: "#f0e68c",
|
||||
lightblue: "#add8e6",
|
||||
lightcyan: "#e0ffff",
|
||||
lightgreen: "#90ee90",
|
||||
lightgrey: "#d3d3d3",
|
||||
lightpink: "#ffb6c1",
|
||||
lightyellow: "#ffffe0",
|
||||
lime: "#00ff00",
|
||||
magenta: "#ff00ff",
|
||||
maroon: "#800000",
|
||||
navy: "#000080",
|
||||
olive: "#808000",
|
||||
orange: "#ffa500",
|
||||
pink: "#ffc0cb",
|
||||
purple: "#800080",
|
||||
violet: "#800080",
|
||||
red: "#ff0000",
|
||||
silver: "#c0c0c0",
|
||||
white: "#ffffff",
|
||||
yellow: "#ffff00",
|
||||
transparent: [ null, null, null, 0 ],
|
||||
_default: "#ffffff"
|
||||
};
|
||||
})( jQuery );
|
||||
|
|
@ -0,0 +1,165 @@
|
|||
/* jquery.Jcrop.css v0.9.12 - MIT License */
|
||||
/*
|
||||
The outer-most container in a typical Jcrop instance
|
||||
If you are having difficulty with formatting related to styles
|
||||
on a parent element, place any fixes here or in a like selector
|
||||
|
||||
You can also style this element if you want to add a border, etc
|
||||
A better method for styling can be seen below with .jcrop-light
|
||||
(Add a class to the holder and style elements for that extended class)
|
||||
*/
|
||||
.jcrop-holder {
|
||||
direction: ltr;
|
||||
text-align: left;
|
||||
}
|
||||
/* Selection Border */
|
||||
.jcrop-vline,
|
||||
.jcrop-hline {
|
||||
background: #ffffff url("Jcrop.gif");
|
||||
font-size: 0;
|
||||
position: absolute;
|
||||
}
|
||||
.jcrop-vline {
|
||||
height: 100%;
|
||||
width: 1px !important;
|
||||
}
|
||||
.jcrop-vline.right {
|
||||
right: 0;
|
||||
}
|
||||
.jcrop-hline {
|
||||
height: 1px !important;
|
||||
width: 100%;
|
||||
}
|
||||
.jcrop-hline.bottom {
|
||||
bottom: 0;
|
||||
}
|
||||
/* Invisible click targets */
|
||||
.jcrop-tracker {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
/* "turn off" link highlight */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
/* disable callout, image save panel */
|
||||
-webkit-touch-callout: none;
|
||||
/* disable cut copy paste */
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
/* Selection Handles */
|
||||
.jcrop-handle {
|
||||
background-color: #333333;
|
||||
border: 1px #eeeeee solid;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
font-size: 1px;
|
||||
}
|
||||
.jcrop-handle.ord-n {
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
}
|
||||
.jcrop-handle.ord-s {
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin-bottom: -4px;
|
||||
margin-left: -4px;
|
||||
}
|
||||
.jcrop-handle.ord-e {
|
||||
margin-right: -4px;
|
||||
margin-top: -4px;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
}
|
||||
.jcrop-handle.ord-w {
|
||||
left: 0;
|
||||
margin-left: -4px;
|
||||
margin-top: -4px;
|
||||
top: 50%;
|
||||
}
|
||||
.jcrop-handle.ord-nw {
|
||||
left: 0;
|
||||
margin-left: -4px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
}
|
||||
.jcrop-handle.ord-ne {
|
||||
margin-right: -4px;
|
||||
margin-top: -4px;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
.jcrop-handle.ord-se {
|
||||
bottom: 0;
|
||||
margin-bottom: -4px;
|
||||
margin-right: -4px;
|
||||
right: 0;
|
||||
}
|
||||
.jcrop-handle.ord-sw {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
margin-bottom: -4px;
|
||||
margin-left: -4px;
|
||||
}
|
||||
/* Dragbars */
|
||||
.jcrop-dragbar.ord-n,
|
||||
.jcrop-dragbar.ord-s {
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
}
|
||||
.jcrop-dragbar.ord-e,
|
||||
.jcrop-dragbar.ord-w {
|
||||
height: 100%;
|
||||
width: 7px;
|
||||
}
|
||||
.jcrop-dragbar.ord-n {
|
||||
margin-top: -4px;
|
||||
}
|
||||
.jcrop-dragbar.ord-s {
|
||||
bottom: 0;
|
||||
margin-bottom: -4px;
|
||||
}
|
||||
.jcrop-dragbar.ord-e {
|
||||
margin-right: -4px;
|
||||
right: 0;
|
||||
}
|
||||
.jcrop-dragbar.ord-w {
|
||||
margin-left: -4px;
|
||||
}
|
||||
/* The "jcrop-light" class/extension */
|
||||
.jcrop-light .jcrop-vline,
|
||||
.jcrop-light .jcrop-hline {
|
||||
background: #ffffff;
|
||||
filter: alpha(opacity=70) !important;
|
||||
opacity: .70!important;
|
||||
}
|
||||
.jcrop-light .jcrop-handle {
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
background-color: #000000;
|
||||
border-color: #ffffff;
|
||||
border-radius: 3px;
|
||||
}
|
||||
/* The "jcrop-dark" class/extension */
|
||||
.jcrop-dark .jcrop-vline,
|
||||
.jcrop-dark .jcrop-hline {
|
||||
background: #000000;
|
||||
filter: alpha(opacity=70) !important;
|
||||
opacity: 0.7 !important;
|
||||
}
|
||||
.jcrop-dark .jcrop-handle {
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
background-color: #ffffff;
|
||||
border-color: #000000;
|
||||
border-radius: 3px;
|
||||
}
|
||||
/* Simple macro to turn off the antlines */
|
||||
.solid-line .jcrop-vline,
|
||||
.solid-line .jcrop-hline {
|
||||
background: #ffffff;
|
||||
}
|
||||
/* Fix for twitter bootstrap et al. */
|
||||
.jcrop-holder img,
|
||||
img.jcrop-preview {
|
||||
max-width: none;
|
||||
}
|
||||
Loading…
Reference in New Issue