Posts

Showing posts from January, 2018

Hybrid Mobile Application using Adobe PhoneGap

Image
Hybrid mobile apps are built with a combination of web technologies like HTML, CSS, and JavaScript. The key difference is that hybrid apps are hosted i nside a native container which is targeting the webview of the device.  So they have access to many device capabilities.We can make really good mobiles apps with this. On the other hand we can use one code for different platforms like android, ios and windows. Here I am going to show the basic of creating a hybrid app through Adobe PhoneGap. You can have a good knowledge about  Adobe PhoneGap  by going to their website.  First go to PhoneGap official website and download the new PhoneGap Desktop app. Then run the “.exe” file and install it to your computer. After installation open the PhoneGap Desktop App. It will look like this. Then install PhoneGap Developer app to your mobile device.  To begin create a new project. On step one select the default hello world as the template. On Step two...

Psychology in Web Design

Image
           1.Von Restorff effect The  Von Restorff effect, also known as the "isolation effect" . The more absurd an element is, the more it will stand out and be remembered. If you want to draw attention to one item, you isolate it, such as through color, size, spacing, etc. 2. Psychology of Color Using appropriate colours in designing the brand identity Black: sophistication and power White: cleanliness, sophistication, virtue Red: courage, power, strength; can also stimulate appetite Blue: calmness, peace, trust, safety Yellow: optimism, happiness Green: balance, sustainability growth Purple: royalty, spiritual awareness, luxury Orange: friendliness, comfort, and food Pink: tranquillity, femininity, sexuality 3.    Maslow’s Hierarchy of Needs 4.Hick’s Law Hick’s Law relates to how long it takes someone to make a decision. If peo...

Disable Right Clicking On Your Site

Image
Did you ever wanted to disable right clicking on your site?  There are number of ways to do this. 1. From JavaScript Add the following script to the head of your site. <script type="text/javascript"> function a(){      if(document.all){return false;} } function b(e){      if(document.layers||(document.getElementById&!document.all)){                                   if(e.which==2||e.which==3){return false;}      } } if(document.layers){      document.captureEvents(Event.MOUSEDOWN);      document.onmousedown=b; } else{      document.onmouseup=b;      document.oncontextmenu=a; }      document.oncontextmenu=new Function("return false"); </script> 2. From j Query   First you need add jquery  library to your page. < script src = "jq...