Skip to content

added hovering effect on images #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions css/animate-custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

img{
transition: 0.8s;
}

img:hover{
transform: scale(1.08);

box-shadow: 8px 8px 8px;
}

.animated {
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
Expand Down
12 changes: 8 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<!DOCTYPE html>
<html lang="en">

Expand All @@ -8,12 +9,15 @@
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">


<link href="img/favicon.ico" rel="shortcut icon">
<!-- Custom styles for this template -->
<link href="css/main.css" rel="stylesheet">
<link rel="stylesheet" href="css/icomoon.css">
<link href="css/animate-custom.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic' rel='stylesheet' type='text/css'>

<!--<link href="css/animating.css" rel="stylesheet"> -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>

<script src="js/jquery.min.js"></script>
Expand Down Expand Up @@ -96,7 +100,7 @@ <h4>
</h4>
<a href="#" class="icon icon-twitter"></a>
<a href="https://www.facebook.com/mehul.arora.35" class="icon icon-facebook"></a>
<a href="#" class="icon icon-github"></a>
<a href="https://github.com/humbletechy" class="icon icon-github"></a>
<p>THE MIFOS INITIATIVE</p>
</div>
<!-- col-lg-3 -->
Expand All @@ -109,7 +113,7 @@ <h4>
</h4>
<a href="#" class="icon icon-twitter"></a>
<a href="https://www.facebook.com/ManthanRsurkar" class="icon icon-facebook"></a>
<a href="#" class="icon icon-github"></a>
<a href="https://github.com/thesmallstar" class="icon icon-github"></a>
<p>APACHE</p>
</div>
<!-- col-lg-3 -->
Expand All @@ -122,7 +126,7 @@ <h4>
</h4>
<a href="#" class="icon icon-twitter"></a>
<a href="https://www.facebook.com/ritikh" class="icon icon-facebook"></a>
<a href="#" class="icon icon-github"></a>
<a href="https://github.com/harchani-ritik" class="icon icon-github"></a>
<p>CCEXTRACTOR DEVELOPMENT</p>
</div>
<!-- col-lg-3 -->
Expand Down Expand Up @@ -161,7 +165,7 @@ <h4>
</h4>
<a href="#" class="icon icon-twitter"></a>
<a href="https://www.facebook.com/GhostFoxSledgehammer" class="icon icon-facebook"></a>
<a href="#" class="icon icon-github"></a>
<a href="https://github.com/GhostFoxSledgehammer" class="icon icon-github"></a>
<p>OpenStreetMap</p>
</div>

Expand Down