Menu Close Menu

0 comments

Periscope offcial logo

A Surprise for 288 million monthly active users on twitter, Twitter had launched Periscope, a live, interactive video app that allows you teleport anywhere with a faucet. Broadcast privately to a few people or in public to the globe. Periscope seamlessly integrates with Twitter, therefore you can share videos with your followers in real time. Presently Periscope video app is on market for Apple and Android Users only. Twitter conjointly added group Direct Messages, that allow you to take any public conversation into private, You'll add up to 20 people to a Direct Message at any time. They’ll get a notification that they’ve been included, due to advanced social communication also they're going to expand cluster user limte shortly once receiving feedback on restricted user limit.

 

The basic feature is for Periscope video app is capture, edit and share, lets take a look at basic app features.

 

Capture Videos using Periscope

Periscope video app that allows you to instantly capture images and record video on your Smartphone—then share them with anyone. Just hold down the record button to capture what’s happening around you. you can shoot one or more videos to show instantly what important happen around you.

 

Edit Captured Videos Using Twitter Video App

Create more videos without having any trouble. Superimpose yourself into your videos,  and keep your audience's attention with a variety of Breaking up important news. Editing your video is as quick and easy as drag-and-drop. Rearrange the good ones by deleting unusual clips from captured video until everything is exactly how you want it. It's also designed with the selfie in mind. The camera will default to the front-facing shooter.

 

easy and quick sharing with just one click away

This is yet another example of a social network making it easier for users to share photos and videos. In what almost feels like an industry-wide push, Facebook, Twitter and Snapchat have all been building messaging services in which photos are a major means of communication.

 

As soon as you’re done recording, your screencast video is ready to share with people around the world, within moments of making them. Download the app to get started.

 

Twitter Changing Terms & Conditions and Privacy Policy

Twitter have made a changes to their Terms of Service and Privacy Policy, So today, Twitter Support team starting to email users to let them know about some updates to these policies. We know that these types of updates are really important to you, and we want to help you by sharing. Twitter revised their Terms of Service and Privacy Policy, effective as of 18 May 2015.

 

Please read the updated policies and FAQs by following link below, Twitter explaining the revisions. By using their twitter services after 18 May 2015, you must be agree to the revised Terms of service and Privacy Policy.

 

 

Starting 18 May 2015, users outside the United States will receive Twitter services from Twitter International Company, based in Dublin Ireland. The features, the look and feel, and everything else you love will not change. Learn more.

 

Share your views about the twitter video app in the comment box below and share the updates with your social friends. Happy Blogging…!!

Read Article →

1 comments

Email form with background clip

Today we’d like to show you how to build a simple Flat Email subscription widget with an interesting eye catching effect. The idea comes from when I was reading a tutorial on how to create animated text with background clip property. The technique used to create the effect is actually pretty simple no need to do very hard coding or write fixes for browsers support. What about browser support? Certainly, this is the most obvious way which comes to one’s mind, although background-clip: text is only supported in Web-kit-based browsers for now. We will also explain it how to fix it in non web-kit browsers, moreover we are using HTML5 email validation method (required tag), with the use of HTML5 and CSS3 we’ll be make our email form more advance than ever. let’s get started

 

The  solution is to use Modernizr to detect if background-clip: text is available, and then use a class backgroundcliptext to apply background-clip:text selectively – Polygon does this too.

 

Live Preview

 

 

Browser Support:

 

Chrome:- Supported

Internet Explorer:- Not Supported

Mozila Firefox:- Not Supported

Opera:- Supported

Safari:- Supported

 

better solution CSS3 fallback

 

In back 2013 Deviya Manian share complete tutorial with examples, A better CSS fallback technique for fixing background clip issue in non webkit browser.

 

This can be easily solved using CSS prefixed value for non webkit browsers. We have set the transparent background using prefixed value for firefox and Internet Explorer(-ms- -moz-), then background-clip: text would only apply when -webkit- prefixed values are supported in browser.

 

So Now you have question about how your text will look in non webkit browser?

text in non webkit browser

 

Non webkit browser will show default color, which is we are using for p tag, and the clipped background is no longer shown in  Non WebKit browsers. If you have better idea than CSS3 fallback, you can share that with us in the comment box below.

So let’s start do some code:

First of all the only bits of HTML that we need for the subscription widget. The HTML markup looks as follows:

 

<div id="email-sbwrapper">
<div id="email-subwrapper">
<h4>News & Tutorials</h4>
<p>SUBSCRIBE US</p><div id="emailbg">
<input class='emailinput1' type="email" name='email' placeholder="Enter your email" required/>
<input style="border:0;" class='emailbutton1' title='Submit' type='submit'  value='SignUp'/>
</div></div></div>

 

And the CSS looks like this:

 

/*Fix For Input Default border */
*:focus {
    outline: 0;
}
/*Fix For Input Default border */
input:focus{
    outline: 0;
}

#email-sbwrapper {
    width: 95%;
    height:250px;
    background:rgba(255,255,255,1.00);
    float: none;
    outline: none;
    margin:auto;
    padding: 10px;
    border: 0;
    position:relative;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 0px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0px 5px rgba(0,0,0,0.1);
    box-shadow: 0 0px 5px rgba(0,0,0,0.1);   
    }
   
#email-subwrapper {
    background: rgba(0,179,233,1.00);
    position: absolute;
    width: 96.5%;
    height: 250px;
}

#email-sbwrapper h4 {
    font-family: "Verdana", sans-serif;
    font-size: 24px;
    font-variant:small-caps;
    color: #fff;
    text-align:center;
    padding: 0;
    margin: 20px 0 0px 0px;
    text-decoration:none;   
    }   
   
#email-sbwrapper p {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 80px;
    font-weight:bold;
    font-stretch:inherit;
    font-variant: uppercase;
    letter-spacing: -5px;
    color:rgba(1,61,88,1.00);
    text-align:center;
    margin:0 0 0 0px;   
    text-decoration:none;
    background:url(https://dl.dropboxusercontent.com/u/223738947/Demos/Email%20Popup%20Version%202/Images/photoshop-background.jpg);
    background: -moz-linear-gradient(transparent, transparent);
    background: -ms-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: moving 20s ease infinite;
    }

#emailbg {
    width:96.3%;
    height:auto;
    position:absolute;
    bottom:0;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    z-index:auto;
}
.emailbutton1  {
    background: rgba(0,179,233,2.00);   
    color: #fff;
    float: left;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
    cursor: pointer;
    font-size: 15px;
    border: 0;
    line-height: 52px;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align:top;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    outline: none;
}


.emailbutton1:hover {
    background: rgba(0,179,233,0.70);
    text-decoration: none !important;
}

.emailinput1 {
    width: 76%; 
    height: 50px; 
    float: left;
    margin: 0 auto;
    padding-left: 10px;
    border: none;
    background: #fff; 
    font-style: italic; 
    color: #949494;
    border-bottom: 2px solid #d2d2d2;
    border-left: 2px solid #d2d2d2;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align:top;
    text-decoration: none;
}

.emailinput1:hover {
    border-color: rgba(0,179,233, 1.00);
}

 

In order to be able to animate and for background clip effect into ( “Subscribe Us” ) we have just added webkit animation property and –webkit-text-fill-color propterty to “#email-sb-wrapper p” div look like this:

 

    background:url(Images/photoshop-background.jpg);
    background: -moz-linear-gradient(transparent, transparent);
    background: -ms-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: moving 20s ease infinite;

/*Webkit Supported CSS for animation*/
@-webkit-keyframes moving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 500px;
  }
}​

 

In the hole tutorial the above CSS code is very interested, for animated background clip effect we are using image and for the non webkit browsers – we have add prefixed value for Mozilla Firefox and Microsoft IE, where we have set transparent background. Now the Animated background is a straight up solid color instead of a messy-looking image knockout in Mozilla and Internet Explorer.

 

So Finally Our CSS Code look this:

 

/*Fix For Input Default border */
*:focus {
    outline: 0;
}
/*Fix For Input Default border */
input:focus{
    outline: 0;
}

#email-sbwrapper {
    width: 95%;
    height:250px;
    background:rgba(255,255,255,1.00);
    float: none;
    outline: none;
    margin:auto;
    padding: 10px;
    border: 0;
    position:relative;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 0px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0px 5px rgba(0,0,0,0.1);
    box-shadow: 0 0px 5px rgba(0,0,0,0.1);   
    }
   
#email-subwrapper {
    background: rgba(0,179,233,1.00);
    position: absolute;
    width: 96.5%;
    height: 250px;
}

#email-sbwrapper h4 {
    font-family: "Verdana", sans-serif;
    font-size: 24px;
    font-variant:small-caps;
    color: #fff;
    text-align:center;
    padding: 0;
    margin: 20px 0 0px 0px;
    text-decoration:none;   
    }   
   
#email-sbwrapper p {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 80px;
    font-weight:bold;
    font-stretch:inherit;
    font-variant: uppercase;
    letter-spacing: -5px;
    color:rgba(1,61,88,1.00);
    text-align:center;
    margin:0 0 0 0px;   
    text-decoration:none;
    background:url(https://dl.dropboxusercontent.com/u/223738947/Demos/Email%20Popup%20Version%202/Images/photoshop-background.jpg);
    background: -moz-linear-gradient(transparent, transparent);
    background: -ms-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: moving 20s ease infinite;
    }

#emailbg {
    width:96.3%;
    height:auto;
    position:absolute;
    bottom:0;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    z-index:auto;
}
.emailbutton1  {
    background: rgba(0,179,233,2.00);   
    color: #fff;
    float: left;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
    cursor: pointer;
    font-size: 15px;
    border: 0;
    line-height: 52px;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align:top;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    outline: none;
}


.emailbutton1:hover {
    background: rgba(0,179,233,0.70);
    text-decoration: none !important;
}

.emailinput1 {
    width: 76%; 
    height: 50px; 
    float: left;
    margin: 0 auto;
    padding-left: 10px;
    border: none;
    background: #fff; 
    font-style: italic; 
    color: #949494;
    border-bottom: 2px solid #d2d2d2;
    border-left: 2px solid #d2d2d2;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align:top;
    text-decoration: none;
}

.emailinput1:hover {
    border-color: rgba(0,179,233,2.00);
}

/*Webkit Supported CSS for animation*/
@-webkit-keyframes moving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 500px;
  }
}

 

According to our blog niche we design this widget for blogger users , but for websites user it will be useful after little bit editing. So now I am going to add RSS email subscription form into HTML Markup.

 

After adding RSS Email Subscription form to our HTML Markup, then finally our HTML Markup will look like this:

 

<div id="email-sbwrapper">
<div id="email-subwrapper">
<h4>News & Tutorials</h4>
<p>SUBSCRIBE US</p>

<div id="emailbg">

<!--RSS email Subscription -->

<form action='http://feedburner.google.com/fb/a/mailverify' class='emailform1' method='post' onsubmit='window.open(&quot;http://feedburner.google.com/fb/a/mailverify?uri="mybloggerstrick", &quot;popupwindow&quot;, &quot;scrollbars=yes,width=550,height=520&quot;);return true' target='popupwindow'>
<input name='uri' type='hidden' value='mybloggerstrick'/>
<input name='loc' type='hidden' value='en_US'/>
<input class='emailinput1' type="email" name='email' placeholder="Enter your email"/>
<input style=’border: 0;’ class='emailbutton1' title='Submit' type='submit'  value='SignUp'/>
</form>

</div></div></div>

 

In coming days, we will post separate tutorials for adding it into blogger blog, new and more demanded color schemes also will be released.

Do share your precious views on this widget and let us know how can we improve it further and don’t forget to share it with your social friends.. Happy Blogging..!! Remember me in your prayers.

Read Article →

0 comments

paid content writing

 

Like most bloggers, you dream of making money from your blog one day. A sponsored blog post is a blog post which you are paid publish on your blog. It may be written by you or by the advertisers. There is no harm in publishing paid reviews as long as the review relates to your niche. In accordance with FTC regulations you should always mention that it’s a sponsored blog post, usually at the end of the post with a byline such as:

“blog post was sponsored by (Company or brand Name Here).” Even if you are not legally bound to disclose that you’ve been paid to publish a post, you should.

 

I wouldn’t recommend that bloggers sell sponsored blog posts for such a low figure unless they don’t have a loyal and returning readership and don’t care about losing the readers they do have.

If you have a blog or websites with a decent dressed Pagerank i.e. PR4 or 5, you may contact a review network too and get paid for writing reviews on your website. Some of these networks include PayPerPost, ReviewMe, and BlogVertise etc.

 

Note:-, a sponsored blog post is a personal experience recommendation from you – from a real person your readers know and trust. Don’t sell yourselves or your readers short.

 

Recommendations while writing paid reviews

You have worked hard on your blog, to build up a voice, and content that people enjoy reading, sharing and engaging with. Flooding your blog with articles about car insurance, the latest cheap products and that “must buy” will eventually turn off the readers you’ve worked hard to attract.

 

  1. Try to work with clients that enhance your blog and add value for your readers.
  2. The sole purpose of Paid reviews is to get a rich PR link from you. Sponsors don't care about your traffic
  3. Make sure that links within sponsored content have the “nofollow” attribute or are coded so that they are inaccessible to crawlers. This includes any links to the sponsor on the template (logos, package treatments, etc.) and any sponsor links within the actual editorial text. This applies to all forms of sponsored content, be it specially created content or regular editorial content that is given a sponsor treatment.
  4. Any links within sponsored content should not pass PageRank. This stemmed from the incident in which Interflora and some UK newspapers were penalized for links within advertorials. Accept only a maximum of two links pointing to the same domain when reviewing. Sponsors often insert too many links on a single review, this makes your review suspected and can give a signal to Google that you are selling links.
  5. Never review Casino or Gambling sites, no matter how commercial the site be.
  6. The Review content must be related to your niche. If you write on web developments then you can review apps or web services or web tools that are used for web development purposes but you can not review a selling cars or Real Estate business sites.
  7. Charge $100-$150 for a PR4 site with a review of 1000 words. These higher rates are generally paid to more established blogs with a higher Page Rank (find out yours here) and a larger audience.

 

Google Guidelines About Paid Links

 

Not all paid links violate our guidelines. Buying and selling links is a normal part of the economy of the web when done for advertising purposes, and not for manipulation of search results. Links purchased for advertising should be designated as such. This can be done in several ways,

 

such as:

 

  • Adding a rel=”nofollow” attribute to the <a> tag
  • Redirecting the links to an intermediate page that is blocked from search engines with a robots.txt file”

We recommend you avoid selling (and buying) links that pass PageRank in order to prevent loss of trust, lower rankings, or in an extreme case, removal from Google's search results.

Hope the above tips will help you better review content on your websites or blogs.

Read Article →

0 comments
Jquery logo
The differences between the two programs are discussed on the internet in more than thousands articles but technology is full of confusing terms. A lot of fresh developer (also me) ask a question it’s possible the use JQuery only?, So the answer is simple “No”, first off - it's impossible to use jQuery only, all jQuery does is add a $ object to your global scope, with a bunch of methods in it. Even more manipulative libraries like prototype aren't an alternative to javascript, they're a tool belt to solve common problems.


What Is JavaScript And Why its value For Web?


The answer is simple for What is Javascript “ it’s is a programming language whereas jQuery is a framework to help make writing in javascript easier.
An HTML page is a static one without use of JavaScript. It’s could make a web page dynamic and also we can create special effects on web pages like rollover, roll out and many types of graphics that would leave an amazing impression. For example, for a flash content on a web page to be executed in a web browser the JavaScript must be enabled. It’s also necessary for validation contact forms and login forms etc.

The uses of JavaScript don’t stop there, It has also been used for server-side programming, network programming with frameworks such as Node.js, game development and the creation of desktop and mobile applications.  JavaScript was originally developed by Brendan Eich, while working for Netscape Communications Corporation.


What Is JQuery And Why it’s Important

jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. It’s free, open source software, licensed under the MIT License. Before JQuery, developers would create their own small frameworks (group of code) this would allow all the developers to work around all the bugs and give them more time to work on features, so the JavaScript frameworks were born.

On the other hand best way to know what is JQuery? it’s a fast and well performance (Group of JavaScript code) Library that simplifies WebPages and HTML documents traversing, Events, Animating and develop Ajax applications for a well performed web development. Used by over 80% of the 10,000 most visited websites. [Wiki]

The main advantages of jQuery :

1. Browser compatibility - doing something like .attr() is much easier than the native alternatives, and won't break across browsers.

2. Simplification of usually complicated operations - if you'd like to see a well written cross browser compatible version of an XHR method, take a look at the source for $.ajax - for this method alone it's almost worth the overhead of jQuery.

3. DOM selection - simple things like binding events & selecting DOM elements can be complicated and differ per-browser. Without a lot of knowledge, they can also be easily written poorly and slow down your page.

4. Access to future features - things like .index Of and .bind are native JavaScript, but not yet supported by many browsers. However, using the jQuery versions of these methods will allow you to support them cross browser.

 

I hope the above introduction enough to understand difference between two programming language, If I miss anything please let me know in the comment box below, I will try to improve my post according to your tips. Please feel free to post any query via comment box below, we will always well come you as a loyal reader. Happy Blogging..!!

Read Article →