Drag and throw elements and watch them continue naturally with momentum, respect bounds and optionally snap to a grid. This is the demo seen at http://www.greensock.com/draggable/
This file contains hidden or 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
<a class="twitter-timeline" href="https://twitter.com/mektball" data-widget-id="439791431096348672">Tweets by @mektball</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> |
This file contains hidden or 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
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | |
<title>App-to-Convert</title> | |
<script type="text/javascript"> | |
var field1 = 0; //field1 and field2 are the values being added together | |
var field2 = 0; | |
var question_num = 0; //question_num counts up to 10 | |
This file contains hidden or 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
<h2> Web Site Terms and Conditions of Use </h2> <h3> 1. Terms </h3> <p> By accessing this web site, you are agreeing to be bound by these web site Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this site. The materials contained in this web site are protected by applicable copyright and trade mark law. </p> <h3> 2. Use License </h3> <ol type="a"> <li> Permission is granted to temporarily download one copy of the materials (information or software) on Roach Haus's web site for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not: <ol type="i"> <li>modify or copy the materials;</li> <li>use the materials for any commercial purpose, or for any public display (commercial or non-commercial);</li> < |
This file contains hidden or 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
LICENSED APPLICATION END USER LICENSE AGREEMENT The Products transacted through the Service are licensed, not sold, to You for use only under the terms of this license, unless a Product is accompanied by a separate license agreement, in which case the terms of that separate license agreement will govern, subject to Your prior acceptance of that separate license agreement. The licensor (“Application Provider”) reserves all rights not expressly granted to You. The Product that is subject to this license is referred to in this license as the “Licensed Application.” a. Scope of License: This license granted to You for the Licensed Application by Application Provider is limited to a non-transferable license to use the Licensed Application on any iPhone or iPod touch that You own or control and as permitted by the Usage Rules set forth in Section 9.b. of the App Store Terms and Conditions (the “Usage Rules”). This license does not allow You to use the Licensed Application on any iPod touch or iPhone that You do n |
This file contains hidden or 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
Mobile App Development & Description Introduction In this blog, I am going to discuss about mobile app development, related technologies, types of application in current scenario, from past and the future along with their related operating systems. So buckle up and get ready for this app journey.. Here we go! Applications | Overview We are in an era of applications that are continuously making our life easier, better and I can say extended. So just go through all these types and be a part of this app era. Definition Application is nothing but a set of program or codes that are designed for performing some required or pre defined operations. There can be several types of applications. Based on their functionality, their definition and working methodology, technologies also differ from each other. Now, I am taking you in an ocean of applications… Current Scenario | App Development Here, I am comparing the data of few years on mobile based devices like tablets, smartphones, fablets, etc. with interne |
This file contains hidden or 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 article shows how the use advertisment system on iOS and Android platform using cross platfrom development tool Download source - 175.4 KB Introduction This article provides basic information about advertisement systems. To make our work most effective, we use a Moscrif SDK. Moscrif SDK allows creating application for about 90% of currently used devices with only one code. More information about Moscrif SDK is available on its homepage: www.moscrif.com Advertisement systems Many developers decide to make their applications available for free and earn money from the advertisements. However, paying attention for users of every single platform may be too difficult and time consuming. Therefore, advertisement systems were developed to simplify this task. Currently, Moscrif supports two systems: AdMob and iAd. AdMob AdMob is a mobile advertisement system provided by Google. It is used by many well known brands like Ford, Coca-Cola, EA, P&G, Land Rover, MTV Europe, Adidas, AccuWeather and many others. For |
This file contains hidden or 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
@charset "UTF-8"; | |
/*! | |
Animate.css - http://daneden.me/animate | |
Licensed under the MIT license - http://opensource.org/licenses/MIT | |
Copyright (c) 2013 Daniel Eden | |
*/ | |
.animated { |
This file contains hidden or 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
<?php | |
include("Mobile_Detect.php"); | |
$detect = new Mobile_Detect(); | |
if (!$_SESSION['switched'] | |
&& !is_admin() | |
&& $detect->isMobile() | |
&& empty($_REQUEST['wptheme']) | |
&& get_current_theme() != 'My%20Mobile%20Page%20V3%20Wordpress%20Theme') { | |
$_SESSION['switched'] = true; | |
header('Location: http://yourwebsiteurl.com?wptheme=My%20Mobile%20Page%20V3%20Wordpress%20Theme'); |
This file contains hidden or 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
@@ -71,7 +71,7 @@ | |
if (this.isRTL){ | |
this.picker.addClass('datepicker-rtl'); | |
this.picker.find('.prev i, .next i') | |
- .toggleClass('icon-arrow-left icon-arrow-right'); | |
+ .toggleClass('fa-arrow-left fa-arrow-right'); | |
} | |
$(document).on('mousedown', function (e) { | |
// Clicked outside the datepicker, hide it | |
@@ -951,9 +951,9 @@ |