Bootstrap snippet and html example. project widget with image effect

Bootstrap 4.5.0 snippet "project widget with image effect" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: project

HTML code

Clean, semantic HTML that powers this Bootstrap 4.5.0 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<div class="container">
<div class="row clearfix">
        <div class="col-md-3 col-sm-6 col-xs-12">
            <div class="boxs project_widget">
                 <div class="pw_img">
                    <img class="img-responsive" src="https://www.bootdey.com/image/280x280/FFB6C1/000000" alt="About the image">
                </div>
                <div class="pw_content">
                    <div class="pw_header">
                        <h6>Magazine Design</h6>
                        <small class="text-muted">Falcon  |  Last Update: 12 Dec 2017</small>
                    </div>
                    <div class="pw_meta">
                        <span>4,870 USD</span>
                        <small class="text-muted">Budget / Salary</small>
                        <small class="text-danger">17 Days Remaining</small>
                    </div>
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-xs-12">
            <div class="boxs project_widget">
                <div class="pw_img">
                    <img class="img-responsive" src="https://www.bootdey.com/image/280x280/87CEFA/000000" alt="About the image">
                </div>                            
                <div class="pw_content">
                    <div class="pw_header">
                        <h6>New Dashboard</h6>
                        <small class="text-muted">Falcon  |  Last Update: 17 Dec 2017</small>
                    </div>
                    <div class="pw_meta">
                        <span>921 USD</span>
                        <small class="text-muted">Budget / Salary</small>
                        <small class="text-success">Early Dec 2017</small>
                    </div>
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-xs-12">
            <div class="boxs project_widget">
                 <div class="pw_img">
                    <img class="img-responsive" src="https://www.bootdey.com/image/280x280/FF7F50/000000" alt="About the image">
                </div>
                <div class="pw_content">
                    <div class="pw_header">
                        <h6>Mobile App</h6>
                        <small class="text-muted">Falcon  |  Last Update: 21 Dec 2017</small>
                    </div>
                    <div class="pw_meta">
                        <span>1,870 USD</span>
                        <small class="text-muted">Budget / Salary</small>
                        <small class="text-danger">10 Days Remaining</small>
                    </div>
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-xs-12">
            <div class="boxs project_widget">
                 <div class="pw_img">
                    <img class="img-responsive" src="https://www.bootdey.com/image/280x280/20B2AA/000000" alt="About the image">
                </div>
                <div class="pw_content">
                    <div class="pw_header">
                        <h6>New Dashboard</h6>
                        <small class="text-muted">Falcon  |  Last Update: 28 Dec 2017</small>
                    </div>
                    <div class="pw_meta">
                        <span>870 USD</span>
                        <small class="text-muted">Budget / Salary</small>
                        <small class="text-warning">6 Days Remaining</small>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 4.5.0 to keep the design, spacing, and responsiveness consistent.

body{
    background-color: #f0f3f5;
    margin-top:20px;}
.boxs {
    position: relative;
    margin-bottom: 30px;
    color: #4d585f;
    background-color: white;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
    border-radius: 3px;
}
.project_widget .pw_img {
    position: relative;
    overflow: hidden
}

.project_widget .pw_img:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.project_widget .pw_img:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.project_widget .pw_img img {
    border-radius: 3px 3px 0 0
}

.project_widget .pw_content .pw_header {
    padding: 20px;
    border-bottom: 1px solid #e6eaee
}

.project_widget .pw_content .pw_header h6 {
    font-size: 16px;
    margin: 0
}

.project_widget .pw_content .pw_header small {
    font-size: 12px
}

.project_widget .pw_content .pw_meta {
    padding: 20px
}

.project_widget .pw_content .pw_meta small,
.project_widget .pw_content .pw_meta span {
    display: block
}

.project_widget .pw_content .pw_meta span {
    font-weight: 500
}

Similar snippets

Bootstrap example and template. Project Team

Project Team

Bootstrap example and template. project details

project details

Bootstrap example and template. list projects

list projects

Bootstrap example and template. Assign Project List

Assign Project List

Bootstrap example and template. owl carousel courses

owl carousel courses

Bootstrap example and template. Messages

Messages

Bootstrap example and template. contacts list table

contacts list table

Bootstrap example and template. bs4 beta media user list

bs4 beta media user list

FAQ

How do I use this snippet?

Include Bootstrap 4.5.0, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 4.5.0.

Bootstrap example and template. project widget with image effect

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 10.9K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 4.5.0

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.5.0 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working