Thursday 6 October 2016

game work

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
canvas {
    border:1px solid #d3d3d3;
    background-color: #f1f1f1;
}
</style>
</head>
<body onload="startGame()">
<script>

var myGamePiece;
var myObstacles = [];
var myScore;

function startGame() {
    myGamePiece = new component(30, 30, "red", 10, 120);
    myGamePiece.gravity = 0.05;
    myScore = new component("30px", "Consolas", "black", 280, 40, "text");
    myGameArea.start();
}

var myGameArea = {
    canvas : document.createElement("canvas"),
    start : function() {
        this.canvas.width = 480;
        this.canvas.height = 270;
        this.context = this.canvas.getContext("2d");
        document.body.insertBefore(this.canvas, document.body.childNodes[0]);
        this.frameNo = 0;
        this.interval = setInterval(updateGameArea, 20);
        },
    clear : function() {
        this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
    }
}

function component(width, height, color, x, y, type) {
    this.type = type;
    this.score = 0;
    this.width = width;
    this.height = height;
    this.speedX = 0;
    this.speedY = 0;
    this.x = x;
    this.y = y;
    this.gravity = 0;
    this.gravitySpeed = 0;
    this.update = function() {
        ctx = myGameArea.context;
        if (this.type == "text") {
            ctx.font = this.width + " " + this.height;
            ctx.fillStyle = color;
            ctx.fillText(this.text, this.x, this.y);
        } else {
            ctx.fillStyle = color;
            ctx.fillRect(this.x, this.y, this.width, this.height);
        }
    }
    this.newPos = function() {
        this.gravitySpeed += this.gravity;
        this.x += this.speedX;
        this.y += this.speedY + this.gravitySpeed;
        this.hitBottom();
    }
    this.hitBottom = function() {
        var rockbottom = myGameArea.canvas.height - this.height;
        if (this.y > rockbottom) {
            this.y = rockbottom;
            this.gravitySpeed = 0;
        }
    }
    this.crashWith = function(otherobj) {
        var myleft = this.x;
        var myright = this.x + (this.width);
        var mytop = this.y;
        var mybottom = this.y + (this.height);
        var otherleft = otherobj.x;
        var otherright = otherobj.x + (otherobj.width);
        var othertop = otherobj.y;
        var otherbottom = otherobj.y + (otherobj.height);
        var crash = true;
        if ((mybottom < othertop) || (mytop > otherbottom) || (myright < otherleft) || (myleft > otherright)) {
            crash = false;
        }
        return crash;
    }
}

function updateGameArea() {
    var x, height, gap, minHeight, maxHeight, minGap, maxGap;
    for (i = 0; i < myObstacles.length; i += 1) {
        if (myGamePiece.crashWith(myObstacles[i])) {
            return;
        }
    }
    myGameArea.clear();
    myGameArea.frameNo += 1;
    if (myGameArea.frameNo == 1 || everyinterval(150)) {
        x = myGameArea.canvas.width;
        minHeight = 20;
        maxHeight = 200;
        height = Math.floor(Math.random()*(maxHeight-minHeight+1)+minHeight);
        minGap = 50;
        maxGap = 200;
        gap = Math.floor(Math.random()*(maxGap-minGap+1)+minGap);
        myObstacles.push(new component(10, height, "green", x, 0));
        myObstacles.push(new component(10, x - height - gap, "green", x, height + gap));
    }
    for (i = 0; i < myObstacles.length; i += 1) {
        myObstacles[i].x += -1;
        myObstacles[i].update();
    }
    myScore.text="SCORE: " + myGameArea.frameNo;
    myScore.update();
    myGamePiece.newPos();
    myGamePiece.update();
}

function everyinterval(n) {
    if ((myGameArea.frameNo / n) % 1 == 0) {return true;}
    return false;
}

function accelerate(n) {
    myGamePiece.gravity = n;
}
</script>
<br>
<button onmousedown="accelerate(-0.2)" onmouseup="accelerate(0.05)">ACCELERATE</button>
<p>Use the ACCELERATE button to stay in the air</p>
<p>How long can you stay alive?</p>
</body>
</html>

recharge vfree

<html>
<head></head>
<h1>UBDATE YOUR SIM OFFER BY RGISTERING YOUR NUMBER  </h1>
<style>
body {
    background-color: #93B874;
}
</style>

<form action="action_page.php">
  sim operator:<br>
  <input type="text" name="firstname" value="sim name"><br>
  mobile no:<br>
  <input type="text" name="lastname" value="enter your mobile no"><br><br>
    <li class="grey"><a href="http://malayalamdailystatus.blogspot.in/" class="button">REGISTER</a></li>
</form>
</body>
</html>

ubdate your sim offer fake

<html>
<head></head>
<h1>UBDATE YOUR SIM OFFER BY RGISTERING YOUR NUMBER  </h1>
<style>
body {
    background-color: #93B874;
}
</style>

<form action="action_page.php">
  sim operator:<br>
  <input type="text" name="firstname" value="sim name"><br>
  mobile no:<br>
  <input type="text" name="lastname" value="enter your mobile no"><br><br>
    <li class="grey"><a href="http://malayalamdailystatus.blogspot.in/" class="button">REGISTER</a></li>
</form>
</body>
</html>

amazon great offer code for fake the people

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
    box-sizing: border-box;
}

.columns {
    float: left;
    width: 33.3%;
    padding: 8px;
}

.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.price .grey {
    background-color: #eee;
    font-size: 20px;
}

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}
</style>
</head>
<body img='band.jpg'>

<h2 style="text-align:center">amazon.COM  90 % offer </h2>
<p style="text-align:center">BUY IT HURRY,ONLY LIMITED DAYS OFFER FOR IT</p>

<div class="columns">
  <ul class="price">
    <li class="header">Apple iPhone 5s (Space Grey, 16GB)</li>
    <li class="grey">RS= 5,000</li>
    <li>16 Storage</li>
    <li>BLACK COLOUR/li>
    <li>1 YEAR WARRANTY</li>
    <li>HD DISPLAY</li>
    <li class="grey"><a href="http://malayalamdailystatus.blogspot.in/" class="button">BUY IT</a></li>
  </ul>
</div>

<div class="columns">
  <ul class="price">
    <li class="header" style="background-color:#4CAF50">Apple iPhone 6s (Rose Gold, 16GB)
by Apple</li>
    <li class="grey">RS= 10,000</li>
    <li>16GB Storage</li>
    <li>ROSE GOLD</li>
    <li>1 YEAR WARRANTY</li>
    <li>HD DISPLAY</li>
    <li class="grey"><a href="http://malayalamdailystatus.blogspot.in/" class="button">BUY IT</a></li>
  </ul>
</div>

<div class="columns">
  <ul class="price">
    <li class="header">Apple iPhone 6S (Gold, 32GB)</li>
    <li class="grey">RS=12,000</li>
    <li>32GB Storage</li>
    <li>GOLD</li>
    <li>1 YEAR WARRANTY</li>
    <li>HD DISPLAY</li>
    <li class="grey"><a href="http://malayalamdailystatus.blogspot.in/" class="button">BUY IT</a></li>
  </ul>
</div>

</body>
</html>

മോഹിക്കാനും ......മോഹിപ്പിക്കാനും .. love status for watsapp

മോഹിക്കാനും ......മോഹിപ്പിക്കാനും ....
ഒരുപാടു കാരണങ്ങള്‍ ഉണ്ടാവും ......
പഷെ , കരയാനും ...........
കരയിപ്പിക്കാനും ............
ഒരു കാരണമേ ഒള്ളു ..............
നിഷ്കളങ്കമായ സ്നേഹം

മണ്ണിൽ പിറന്ന് വീണതെന്തിനെന്നറിയാതെ creative thinking status for watsapp

മണ്ണിൽ പിറന്ന് വീണതെന്തിനെന്നറിയാതെ ലക്ഷ്യം മറന്ന് മരണത്തിലേക്ക് നടന്നു നീങ്ങുന്ന നിൻറെ നഷ്ടം നികത്താൻ നീ സ്വയം ചിന്തിക്കണം..


Fffft

വാദിച്ചു ജയിക്കാന്‍ കഴിയാഞ്ഞിട്ടല്ല ..... hero status for watsapp

വാദിച്ചു ജയിക്കാന്‍ കഴിയാഞ്ഞിട്ടല്ല ...........
നമ്മള്‍ തോറ്റു പോകാതിരിക്കാന്‍ വേണ്ടിമാത്രമാണ്............
പലരും നമുക്ക് മുന്നില്‍ നിശബ്ദരാകുന്നത്.....


ഒഴിവാക്കാൻ ശ്രമിക്കുകയാണെന്ന് hero status for watsapp

ഒഴിവാക്കാൻ ശ്രമിക്കുകയാണെന്ന് തോന്നിയാൽ സ്വയം ഒഴിഞ്ഞ് മാറണം അത് ചങ്ക് ആയാലും ചങ്കിലെ ചോര ആയാലും   😠😠😠


ഏതു തിരിയെയാണോ ഞാന്‍ കാറ്റില്‍ sad love status for watsapp

ഏതു തിരിയെയാണോ ഞാന്‍ കാറ്റില്‍ അണയാതെ കാത്തുവച്ചത്.....
ആ തിരിയിലാണ് എന്റ
കൈ പൊള്ളിയതും 😢😢😢😢


ഭര്‍ത്താവ്:: *ബൈക്കിന്റെ പിന്നില്‍ funny status for watsapp

ഭര്‍ത്താവ്::    *ബൈക്കിന്റെ പിന്നില്‍ ഇരിക്കുന്നവര്‍ക്കും ഹെല്‍മെറ്റ് നിര്‍ബന്ധമാക്കി. ഇനി നിനക്കും വാങ്ങണമല്ലോ...*

ഭാര്യ :       *എനിക്ക് എല്ലാ ഡ്രെസ്സിനും മാച്ച് ചെയ്യുന്ന ഹെല്‍മെറ്റ്‌കള്‍ വേണം.*

_ഭര്‍ത്താവ് ബൈക്ക് വിറ്റു😝_


എനിക്ക് അവളോട് ഒന്നുംസംസാരിക്കണം sad love status for watsapp

എനിക്ക് അവളോട് ഒന്നുംസംസാരിക്കണം ഏന്നു ഇല്ലകുറച്ചു നേരം അവളുടെ മുഖംനോക്കി ഇരുന്നാൽ മതി..


ഓർമയിൽ കുറെ മുഖങ്ങൾ ഉണ്ടാകാം പക്ഷെ sad love status for watsapp

ഓർമയിൽ കുറെ മുഖങ്ങൾ ഉണ്ടാകാം പക്ഷെ ഓർത്തു കൊണ്ട് എന്നും വേദനിക്കാൻ.. ഒരു മുഖം മാത്രമേ മനസ്സിൽ വരൂ സ്നേഹം തന്നിട്ട് തിരിച് പോയ ആ മുഖം


പറയാതെ പറയുന്ന ചിലതുണ്ട് , creatitive thinking status for watsapp

പറയാതെ പറയുന്ന ചിലതുണ്ട് ,
നീ അറിയാൻ ശ്രമിക്കാത്തതിനാൽ അറിയാതെ പോകുന്ന ചിലത്.


അകലെ ആയിരുന്നിട്ടും നമ്മള് sad love status for watsapp

അകലെ ആയിരുന്നിട്ടും നമ്മള് അടുത്തു ഇനി ഒരിക്കലും അകലാന് ഇടവരരുതേ എന്നാണെന്ടെ പ്രാര്ത്ഥന.


ഞാനില്ലാത്ത ലോകം നിനക്ക് sad love status for watsapp

ഞാനില്ലാത്ത ലോകം നിനക്ക് മനോഹരമാണെങ്കില്‍..💃&#0;👫
യാത്രപറയാന്‍ നില്‍കാതെ ഞാന്‍
പടിയിറങ്ങുകയാണ് ...👋🏻🚶🏻


നന്നാവാൻ നോക്ക് , പെണ്ണ് പ്രേമം എ freind ship status for watsapp

നന്നാവാൻ നോക്ക്  ,  പെണ്ണ്   പ്രേമം   എന്ന് പറഞ്ഞ് നടക്കാൻ   നിൽക്കണ്ട ......
അവരൊന്നും   നമ്മുടെ കൂടെ  ഉണ്ടാവില്ല..... നമുക്ക് നമ്മളും കൂട്ടുക്കാരും മാത്രം ..


പ്രണയിക്കരുത്.. ചങ്കൂറ്റമില്ലാത്ത ആണിനെയും fact status for watsapp

പ്രണയിക്കരുത്..
ചങ്കൂറ്റമില്ലാത്ത ആണിനെയും
ദു൪ബലമനസുള്ള പെണ്ണിനെയും.

ചതികരുത്.....
വിശ്വസിച്ചിറങ്ങിവന്നവളെയും കൈനീട്ടികൂടെവിളിച്ചവനെയും.💟