CSS Animated Transition with Cubic Bezier
Create a cubic bezier @ http://cubic-bezier.com
Sample code
transition: all 1s cubic-bezier(.46,.18,.6,.88) .5s;
Sample code
transition: all 1s cubic-bezier(.46,.18,.6,.88) .5s;
css half circle
<div></div>
div{
height:45px;
width:90px;
border-radius: 90px 90px 0 0;
-moz-border-radius: 90px 90px 0 0;
-webkit-border-radius: 90px 90px 0 0;
background:transparent;
border-top:10px solid #000;
border-left:10px solid #000;
border-right:10px solid #000;
}
div{
height:45px;
width:90px;
border-radius: 90px 90px 0 0;
-moz-border-radius: 90px 90px 0 0;
-webkit-border-radius: 90px 90px 0 0;
background:transparent;
border-top:10px solid #000;
border-left:10px solid #000;
border-right:10px solid #000;
}
Using Google No captcha Re captcha in your web page 2016
<?php
if(isset($_POST['submit']))
{
$secret = "XXXXXXXXXXXXXXXXXXXXX"; //secret key
$response = $_POST['g-recaptcha-response']; // captcha response
$remoteip = $_SERVER['REMOTE_ADDR']; // get user ip
$url = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=$secret&response=$response&remoteip=$remoteip"); // pass values to recapcha API
$result = json_decode($url, TRUE);
if($result['success']==1)
{
echo "SUCCESS"
}
else{
echo "failed"
}
}
if(isset($_POST['submit']))
{
$secret = "XXXXXXXXXXXXXXXXXXXXX"; //secret key
$response = $_POST['g-recaptcha-response']; // captcha response
$remoteip = $_SERVER['REMOTE_ADDR']; // get user ip
$url = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=$secret&response=$response&remoteip=$remoteip"); // pass values to recapcha API
$result = json_decode($url, TRUE);
if($result['success']==1)
{
echo "SUCCESS"
}
else{
echo "failed"
}
}
Subscribe to:
Posts (Atom)

