CSS3 category menu effect

CSS3 category menu effect

The CSS3 category menu effects are as follows:

HTML

<html>
<head>
    <title></title>
    <style type="text/css">
        #bg { width: 1270px; height: 751px; margin: 0 auto; background: url("images/bg.jpg") no-repeat; }
        .sblock { width: 800px; height: 250px; margin: 0 auto;}
        /*.sblock { transform:translateY(65%); }*/
        .sblock > div { width: 200px; height: 250px; margin: 0 auto; }
        .sb1 { padding-top: 170px; }
        .sb2 { padding-top: 30px; }
        .sblock div:hover { transform: translateY(-10px); }
        .sblock div { transition:all 0.5s; }
        .sb1 > div:nth-of-type(1) { float: left; background: url("images/1.jpg") no-repeat; }
        .sb1 > div:nth-of-type(2) { float: left; background: url("images/2.jpg") no-repeat; }
        .sb1 > div:nth-of-type(3) { float: left; background: url("images/3.jpg") no-repeat; }
        .sb1 > div:nth-of-type(4) { float: left; background: url("images/4.jpg") no-repeat; }
        .sb2 > div:nth-of-type(1) { float: left; background: url("images/5.jpg") no-repeat; }
        .sb2 > div:nth-of-type(2) { float: left; background: url("images/6.jpg") no-repeat; }
        .sb2 > div:nth-of-type(3) { float: left; background: url("images/7.jpg") no-repeat; }
        .sb2 > div:nth-of-type(4) { float: left; background: url("images/8.jpg") no-repeat; }
    </style>
</head>
<body>
    <div id="bg">
        <section class="sblock sb1">
            <div></div>
            <div></div>
            <div></div>
            <div></div>
        </section>
        <section class="sblock sb2">
            <div></div>
            <div></div>
            <div></div>
            <div></div>
        </section>
    </div>    
</body>
</html>

Summarize

The above is the CSS3 classification menu effect introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  The big role of HTML meta

>>:  Solve the problem that Navicat cannot connect to the MySQL server in the Centos system in VMware

Recommend

MYSQL performance analyzer EXPLAIN usage example analysis

This article uses an example to illustrate the us...

How to implement input checkbox to expand the click range

XML/HTML CodeCopy content to clipboard < div s...

2017 latest version of windows installation mysql tutorial

1. First, download the latest version of MySQL fr...

Let's talk about the Vue life cycle in detail

Table of contents Preface 1. Life cycle in Vue2 I...

Detailed explanation of type protection in TypeScript

Table of contents Overview Type Assertions in syn...

Nodejs converts JSON string into JSON object error solution

How to convert a JSON string into a JSON object? ...

JavaScript destructuring assignment detailed explanation

Table of contents concept Array Destructuring Dec...

10 skills that make front-end developers worth millions

The skills that front-end developers need to mast...

JavaScript removes unnecessary properties of an object

Table of contents Example Method 1: delete Method...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...

Common naming rules for CSS classes and ids

Public name of the page: #wrapper - - The outer e...