Tag: animate css

animate css

How to Create Animation using jQuery

In this article, you will learn How to Create Animation using jQuery like hiding and show.

Example:-

<html>
<head>
<title>Animation in jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    var div = $("div");  
    div.animate({left: '250px'}, "slow");
    div.animate({fontSize: '3em'}, "slow");
  });
});
animate css

How to Create Image Border using CSS

In this article, we will explain How to Create Image Border using CSS.because sometimes we need a border with an image.

Example:-

<html>
<head>
<title>Image Border using CSS</title>
<style> 
#borderimg { 
  border: 10px solid transparent;
  padding: 15px;
  border-image: