Plus Minus expand toggle

Size
2,177 Kb
Views
155,848

How do I make an plus minus expand toggle?

What is a plus minus expand toggle? How do you make a plus minus expand toggle? This script and codes were developed by Christian Stuff on 31 July 2022, Sunday.

Plus Minus expand toggle Previews

Plus Minus expand toggle - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Plus Minus expand toggle</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="plus-minus-toggle collapsed"></div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Plus Minus expand toggle - Script Codes CSS Codes

body { padding: 30px;
}
.plus-minus-toggle { cursor: pointer; height: 21px; position: relative; width: 21px;
}
.plus-minus-toggle:before,
.plus-minus-toggle:after { background: #000; content: ''; height: 5px; left: 0; position: absolute; top: 0; width: 21px; transition: transform 500ms ease;
}
.plus-minus-toggle:after { transform-origin: center;
}
.plus-minus-toggle.collapsed:after { transform: rotate(90deg);
}
.plus-minus-toggle.collapsed:before { transform: rotate(180deg);
}

Plus Minus expand toggle - Script Codes JS Codes

$(function() { $('.plus-minus-toggle').on('click', function() { $(this).toggleClass('collapsed'); });
});
Plus Minus expand toggle - Script Codes
Plus Minus expand toggle - Script Codes
Home Page Home
Developer Christian Stuff
Username Regaddi
Uploaded July 31, 2022
Rating 3
Size 2,177 Kb
Views 155,848
Do you need developer help for Plus Minus expand toggle?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Christian Stuff (Regaddi) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!