Zoom Progress Bars – Visual Composer AddOn (Add-ons)

Zoom Progress Bars Intro – top

Zoom Progress Bars is the perfect tool to create custom progress bars to your wishing .

WordPress ZoomTabs Features

  • HTML5 technology – Zoom Progress Bars uses the latest html5 and css3 features
  • fully responsive – looks great from mobile to HD
  • skin builder – build your own skin in minutes, create multiple skins and all will be remembered
  • SCSS Powered – easy for developers to modify
  • Retina-ready – graphics generally use svg, vectors and font icons so it displays crisp on retina devices
  • easy install – purchase, download the zip, read the docs
  • iPhone / iPad optimized – this gallery has been optimized for Apple touch devices
  • Android optimized – this component has been tested on Android 4.0 and works awesome
  • developer / SASS powered – this component’s CSS has been built on top of SASS which means SASS users will have an easy time modifying the skins. For non-SASS users it’s no problem either because CSS files ( generated by SASS ) are provided
  • compatible with all major browsers, including IE – compatible from IE9 to IE11, Chrome, Safari and Firefox

Other Great Plugins

\ \

Credits

Download Zoom Progress Bars – Visual Composer AddOn (Add-ons)

Better Dashboard (OpenCart)

Description

Module Admin Better Dashboard is clean dashboard with important statistics and pie chart of most 5 selling products.

Features

  • Last 10 orders
  • Total Sales – Today Sales, Sales this year & month
  • Statistics – Pending Orders, Reviews Customers & Affiliates Awaiting Approval
  • Sales Chart
  • Pie Chart of Top 5 Sellers
  • Category & Product Inventory – Total Categories, Active Categories, Total Products, Active Products, In Stock, Out of Stock, Downloadable products

Download Better Dashboard (OpenCart)

Roots Company Showcase (Utilities)














In the Future…

Roots Company Showcase is already the most complete company presentation plugin on the market, merging functionality that would othrwise be available with 3 or 4 distinct plugins.

We are looking to develop an independent widget functionality that will allow even more flexibility for our users.

Additionally we are planing to integrating our plugin with Visual Composer.

Requirements

If you want to use the Roots Company Showcase plugin, all you need to do is install WordPress 3.0+, and install the plugin.

Download Roots Company Showcase (Utilities)

Colorist (Full Applications)

This app is very simple for every one and even few step to customize ,Set a solid color as

wallpaper for Home Screen as well Lock screen your phone with just enough style.
you can change your screen color to match your mood daily!
Key features as below

>> Awesome and simple UI
>> Choose using color picker
>> Add color using hex code
>> Add to Favorite
>> Dynamic Range of Colors
>> Easy to customize
>> iAd Integrated
>> Admob integrated
>> Easy to use
>> Nice interface

Support notes

Support from Envato authors is optional but we will do our best to help.
Support doesn’t mean customization.
Read the full documentation file.
Check if your question is not already in the Item Discussion section.
We do not give support for third party code in this case you need contact the authors.
We do not support errors caused by strong modification to the original files.
We do customizations but this is not included in the package price. To get a quote for a

modification you can send an email using the form in the right sidebar.
We can’t teach how to code in Objective-C, C++, Java or any other language.
We can’t give refunds, if you want a refund please contact Envato directly.
If you have a general question you can use and asking your question in the Item Discussion section.

Our time zone is (currently) GMT+5:30, so please keep in mind our timezone might be different from yours.

Download Colorist (Full Applications)

Easy Social Video Share Addon for ESSB (Add-ons)

Easy Social Video Share is Addon for Easy Social Share buttons for WordPress. You must have installed at least Easy Social Share Buttons for WordPress 1.3.9.7 to use it.

cc-promo-01

Easy embed videos with social share buttons from 33 providers in full responsive sizes. Easy Social Video Share Addon supports lazyload mode for faster page load.

Demos

Supported media sites

  • 4players.de
  • archive.org
  • blip
  • break
  • CollegeHumor
  • Comedy Central
  • dailymotion
  • flickr
  • Funny or Die
  • gametrailers
  • iframe
  • IGN
  • kickstarter
  • LiveLeak
  • metacafe
  • movieweb
  • MPORA
  • myspace
  • MyVideo
  • snotr
  • spike
  • TED Talks
  • twitch
  • USTREAM
  • veoh
  • vevo
  • viddler
  • videojug
  • vimeo
  • Vine
  • XTube
  • Yahoo Screen
  • YouTube

Features

  • 18 Social Networks with options to reorder, change names and personalize for each video
  • 4 Display locations – before video, after video, inside video, on the left side of video
  • 2 Share Types – Video or Page
  • 3 Buttons Styles – Icons, Icons with names on hover, Buttons
  • Option to display counters
  • 2 Load ModesLazlyload or Normal
  • Responsive
  • Personalized settings for each video

Download Easy Social Video Share Addon for ESSB (Add-ons)

iFlou – The Blur Effect you need! (UI Elements)

  1. Disclaimer: an animation only available for iOS ###

Hello Hello!

Are you looking for a nice blur effect for your apps? A nice, neat animation that will give your app this luxurious llok?

Stop it right there! iFlou is the blur effect you need.

Easy to install, it will allow you to add blur when people are scrolling for content.

  1. How to integrate “BlurTextView” to your project ###

To integrate BlurTextView in your project, you need to do some preparations:

1 – Add CustomBlurView.h/CustomBlurView.m BlurTextView.h/BlurTextView.m into you project.

2 – Add bg_blur.png, bg_shwddow.png, ic_arrow_scrollown.png, ic_arrow_scrollup.png to your projact.

3 – If you don’t use « AFNetWorking » library in your project, copy AFNetworking to your project.

4 – if you use <AFNetWorking » library in your project, you need to modify « UIImageView+AFNetworking.h/.m ».

Add this code to your .h file

` – (void)setImageWithURL:(NSURL *)url
placeholderImage:(UIImage *)placeholderImage
success:(void ()(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image))success
failure:(void (
)(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error))failure; `

Add this code to your .m file

`- (void)setImageWithURL:(NSURL *)url
placeholderImage:(UIImage *)placeholderImage
success:(void ()(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image))success
failure:(void (
)(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error))failure
{
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

} `

5 – Now you are ready to write some code. Add this code to where you want to add BlurTextView and set the texts as you like.

(You need to add BlurTextView to a view container and make sure that you don’t forget to set this conainer view’s blurView.userInteractionEnabled to YES.)

`BlurTextView *blurView = [[BlurTextView alloc] initWithFrame:self.view.frame];
blurView.userInteractionEnabled = YES;

blurView.title = @"Blur Text View Test Title";
blurView.subtitle = @"Here some bref description if you want";
blurView.useStaticImages = NO; // Yes if you use local images, No if you use remote images
blurView.contentScript = @"

html formatted text

"

  1. How to personalize you blur effect ###

1 – To personnalize the title/subtitle or the text showed on the scroll page

You need go to `BlurTextView.m`, and customize this values in the “define”s.

2 – To resize the white shadow at the background of the title/subtitle, you can change the value of `k_newscell_height` in `BlurTextView.m`.

3 – If you want to add others elements UI, feel free to modify the `BlurTextView.m` as you like!

Download iFlou – The Blur Effect you need! (UI Elements)

Speedometer (Utilities)

Speedometer displays your current speed on a digital/analog speedometer, keeps track of your top speed and average speed. It also allows you to easily switch between units of measurement (miles/hour or km/hour) for use in your vehicle (your cycle, your car, on a boat or on an airplane)

  • Full screen Digital Display.
  • Also provide support for Analog Display.
  • Keeps track of your distance (trip and total distance) and top speed.
  • Showing Average and Maximum Speed of the trip.
  • User can select speed measurement unit such as km or mile.
  • User can select altitude measurement unit.
  • User can select font types such as simple or digital.
  • Reset data will reset all the travelling data recorded in the app.
  • User can also set the maximum speed limit here.
  • Usage:

  • Speedometer
  • Distance Tracker
  • Average Calculator
  • Please Check our demo app:

    https://www.dropbox.com/s/lhfd92ifr71p7eo/Speedometer%20HD.apk

    Updated version. Date: 23/09/2014

    Updated new Admob with Google Play services.

    Download Speedometer (Utilities)

    3D model Nissan gtr (3D)

    Model Nissan gtr created using libraries Three.js(WebGl).
    The model does not require the texture. Model is well detailed, visible all the basic details of the car.
    You can zoom in, zoom out, rotate the model.

    In archive :
    1) js files for create model Iphone
    2)json model Nissan gtr
    3)documentation

    Models work, if you have a good graphics card, in the following browsers:
    1)IE 11
    2)Chrome(last version)
    3)Opera22
    4)FireFox(last version)

    Download 3D model Nissan gtr (3D)

    HTML Builder (Front-End Version) (Miscellaneous)

    HTML Builder – a drag and drop builder for HTML pages!

    HTML Builder is a nifty little Javascript application which allows end-users to easily compose custom HTML designs using pre-defined HTML elements. The HTML Builder script comes with several sample HTML elements (the ones as displayed in the live demo), however the script really shines when used with your own custom HTML elements!

    Custom elements are easily added, and the process is explained in the detail in the provided documentation (also found online here).

    HTML Builder features

    • build custom HTML pages using predefined HTML elements
    • create multiple pages in one session
    • export markup (only your markup files are exported)
    • basic editing of written content (only available for non IE browsers)

    IDEAL FOR HTML TEMPLATE AUTHORS

    Are you an author selling HTML templates are you looking to provide your customers with an easy way to customise your products after purchasing it? HTML Builder makes integration with HTML templates extremely easy and your customer will the fact they can easily create their own custom pages using your designs!

    Themeforest authors who have purchased an extended license are allowed to bundle HTML Builder with their HTML templates!

    Download HTML Builder (Front-End Version) (Miscellaneous)

    B5 Shortcodes (Interface Elements)

    B5 Shortcodes is a premium WordPress plugin that turbocharges your WordPress site or theme with a powerful shortcodes for easily compose the graphic elements of your website. By using the short code generator, this tool adds more than 100 extra functionalities to your theme, and speed up your work time.

    Featured Shortcodes

    • Columns
    • Tabs
    • Accordion
    • Alerts
    • Image Slider
    • Columns
    • Buttons
    • Icons
    • Quotes
    • Video
    • Audio
    • Lists
    • Bar Charts
    • Circular Progress
    • Milestones
    • Images with Animation
    • Testimonial Slider
    • Google Maps

    Download B5 Shortcodes (Interface Elements)

    Universal Android WebView App (Full Applications)

    WebView App is a native Android application which uses web view for displaying content. Thanks to this template you can create universal mobile application. It is fast, easy and affordable.

    Application is easily configurable and customizable. Project is well documented. See documentation or video manual. You should be able to configure and build the app within 15 minutes.

    Live demo on Google Play: https://play.google.com/store/apps/details?id=com.robotemplates.webviewapp
    Video preview on YouTube: https://www.youtube.com/watch?v=yaGOpzi0qWI
    Video manual on YouTube: https://www.youtube.com/watch?v=GaOJu7elxCA

    Features

    • Support for Gingerbread (Android 2.3.3) and newer
    • Developed with Android Studio & Gradle
    • Holo design following Android Design Guidelines
    • Six color themes (blue, gray, green, orange, red, violet)
    • Action bar
    • Navigation drawer menu (easily customizable)
    • Pull-to-Refresh
    • Share dialog
    • Intents (e-mail, sms, phone call, map, market)
    • WebView supports JavaScript, Cookies, CSS, images, videos and other standard web tools and technologies
    • HTML5 videos, YouTube, Vimeo
    • Local pages (available in offline)
    • Error handling
    • Offline handling
    • Progress bar when loading the page
    • Google Analytics
    • Responsive design (portrait, landscape, handling orientation change)
    • Support for high-resolution displays (xxhdpi)
    • Possibility to build the project without Android Studio / Eclipse (using Gradle & Android SDK)
    • Easy configuration
    • Well documented
    • Top quality clean code created by experienced senior Android developer
    • Free support

    Download Universal Android WebView App (Full Applications)

    Corona SDK Slide Puzzle Template with AdMob (Games)

    Important

    You will need CORONA SDK for this project. This is not an Xcode project.

    It is a full game made with Corona SDK that works for both iOS and Android. It will work with the free version of corona, no need for a paid version (you can modify and compile and publish the game with the free version, no worries).
    The last version of the file (14 May 2014) needs Corona 2014.2189 to work properly.

    Description

    This is a fully customizable template for a “Slide Puzzle” style game, developed using Corona SDK. Works on both iOS devices and Android!

    The game will let you design the levels of your dreams with an easy to use system (all the levels are “text based” and every level is a single .lua file inside a folder…easy to add as many as you want!).

    The game will count how many moves you will take to complete one level and will save your best score in the preferences so you can have fun making your own levels and see in how many moves you can beat them! (and believe us, there is ALWAYS another way to finish one! ;) )
    We also included Ads with AdMob, you can change them to whatever you like (Vungle, etc…) as long as they are supported by Corona SDK

    A lot of aspects can be easily customized:

    • Name of the company/dev in the credits
    • Design your own levels!
    • Design as many levels as you want!
    • Don’t like one tile? Want to add more characters/goals? Free to change and to customize!
    • Ad ON/OFF
    • AdMob account

    The rest of the code is well commented, should not be a problem to change any other aspect not in the config.

    Included in the release:

    • Game source for Corona SDK (.lua)
    • Character and tiles artworks
    • Background music!
    • A cool sound effect when you complete one level
    • 3 sample levels
    • Anything else you might need (yep, that includes a tutorial)

    The whole game can be compiled and published with the free edition of Corona SDK, no need to use a paid licence.
    Click on live Preview for a video of the game!

    Here is a demo apk for Android: Slide Puzzle Demo – Android

    Leave us a feedback if you liked our work :3

    Changelog

    v1.0 – 29/07/2014
    – First stable release

    Download Corona SDK Slide Puzzle Template with AdMob (Games)