Example code for implementing transparent gradient effects with CSS

Example code for implementing transparent gradient effects with CSS

The title images on Zhihu Discovery columns are generally displayed as shown below. Obviously, it is achieved using gradients. The idea is very interesting, mainly to have two aspects of cognition:

This picture can actually be divided into two parts. The right side controls the graphics and gradient, and the left side is a solid color background that has nothing to do with the gradient.

Transparent is also a color, and can be set as a gradient

I'll post my own code below for reference only.

layout

<body>
    <div class="bg-gradient">
        <div class="pic"></div> 
    </div>
</body>

CSS Styles

<style>
        .bg-gradient {
            margin: 0 auto;
            background: rgb(244, 195, 77);
            position: relative;
            width: 600px;
            height: 350px;
        }

        .bg-gradient .pic{
            background-image: linear-gradient(to right, rgb(244, 195, 77), transparent), url("bg.jpg");
            background-position: center;
            background-blend-mode: normal;
            position: absolute;
            height: 100%;
            width: 250px;
            right: 0;
        }
</style>

The final effect is as follows

The above is my code, thanks for watching.

ps: If you want to write something in it and something goes wrong, I don’t think it’s a problem. Well, that’s your problem. Listen to me, you have to solve it on your own. (Explicit words)

<<:  How to use jsonp in vue

>>:  The neglected special effects of META tags (page transition effects)

Recommend

How to configure nginx to return text or json

Sometimes when requesting certain interfaces, you...

How to install setup.py program in linux

First execute the command: [root@mini61 setuptool...

IIS7~IIS8.5 delete or modify the server protocol header Server

Requirements: Remove HTTP response headers in IIS...

mysql5.7.14 decompressed version installation graphic tutorial

MySQL is divided into Community Edition (Communit...

Solution to the bug that IE6 select cannot be covered by div

Use div to create a mask or simulate a pop-up wind...

5 JavaScript Ways to Flatten Arrays

Table of contents 1. Concept of array flattening ...

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

ES6 loop and iterable object examples

This article will examine the ES6 for ... of loop...

MySQL 8.0.13 installation and configuration method graphic tutorial

This article shares the installation and configur...

Summary of MySQL basic common commands

Table of contents MySQL basic common commands 1. ...

MySQL 8.0.22 installation and configuration method graphic tutorial

This article records the installation and configu...

Layui implements sample code for multi-condition query

I recently made a file system and found that ther...