We can create an animation using HTML and CSS. When we add animation to the webpage, it improves the UX of the application. We can create various animations using the CSS keyframes property and use it using the ‘animation’ CSS property. In this tutorial, we will learn to create a snowfall animation effect using CSS. Syntax Users can follow the syntax below to create a snowfall animation effect using CSS. .snow{ animation: snow 7s linear infinite; } .snow:nth-child(2) { left: 20%; animation-delay: 1s; } In the above syntax, ... Read More
The TODO list is a list that typically used to keep track of all the things we need to do in a given day, with the most crucial chores at the top and the least important items at the bottom. We can use it to plan our everyday schedules. We have the flexibility to add new assignments to the list, as well as remove those tasks that have been completed. A TODO list can be used to complete the following four main tasks Add new task Delete task Mark task as completed Edit task Let’s look into the ... Read More
There are several JavaScript methods we can use to retrieve the value of the text input field. We may access or set the value of the text input field inside the script by using the jQuery .val() method. The task we are going to perform in this article is calculating HTML input values and showing them directly using JQuery. Let’s dive into the article for a better understanding. Using JQuery val() method To retrieve the values of form components like input, select, and textarea, utilize the .val() function. It returns undefined when called on a collection that is empty. Syntax ... Read More
Conditional statements are used to control how an execution will proceed in response to various circumstances. You can take one action if a condition is true and another action if the condition is false. Conditional statements are the component of a computer program's logic, decision-making, or flow control. The task we are going to perform in this article was using conditional statements on objects. Let’s dive into the article for getting better understanding on conditional statements. Using if statement The if statement is the most basic type of conditional expression. If a statement is evaluated to see whether it is ... Read More
The task we are going to perform in this article was how to show only one v-menu at a time when clicking to show the menu, let’s dive into the article for getting better understanding on v-menu. A customized version of NativeUI was used to create the server-side trainer and menu known as vMenu. It features complete permissions support, allowing the server owner to control who can do what. Displaying v-menu A user interface's menu is a flexible element. It displays a popover with a variety of uses, like presenting a menu of choices. They may be used in conjunction ... Read More
Python is derived from many other languages including ABC, Modula-3, C, C++, Algol-68, SmallTalk, and UnixShell, and many other scripting languages. Now, as we know this article is all about converting a list of strings to comma-separated strings. Before diving deep into it, it’s necessary to know in detail about strings and lists in python. Let’s move ahead with the topic and understand them in detail. Starting off with string. What is a String? Python strings are sequences of characters, which means they are ordered collections of characters. "This is a string." 'This is also a string.' ... Read More
This article shows how to add an HTML element in between two existing elements. This is a common task when creating webpages, and can be achieved with a few simple steps. We will be using the JavaScript API to access and manipulate the elements on our webpage. The task we are going to perform in this article is adding an HTML element, starting after one and finishing before another one. For this, we are going to use insertBefore() method. Using insertBefore() method The Node interface's insertBefore() method places a node as a child of a given parent node ahead of ... Read More
Pricing is the only P in the four Ps of marketing that brings in revenue for the company. Pricing also plays a vital role at the time of the purchase of the goods. It is a driving factor that determines whether the product will be purchased by the consumer or not. In developing price-sensitive countries like India, Pakistan, China, and others, the pricing of the product plays an important role in purchase decision-making. Pricing, in simple terms, means how much currency the customer has to forgo to obtain ownership of the product or experience the service delivered by the brand. ... Read More
Python is an interpreted, object–oriented, high level, programming language with dynamic semantics. Developed by Gudio Van Rossum in 1991. It supports multiple programming paradigms, including structured, object-oriented and functional programming. List are mutable means that you can change the values of list, like we can add an element, remove, repeat and allows indexing and slicing like strings an element from a list by using different operators. List can be created by using square brackets. By placing elements inside square bracket[ ], separate by commas. For example: list1= [“a”, ”b”]. There is a one more type of list known ... Read More
E-commerce, or electronic commerce, today is taking over the stage. E-commerce basically refers to the online or digital market space where the sellers can list and sell their products and the buyers can negotiate, compare the products from different brands, and make their final choice. E-commerce is the digital marketplace for companies. E-commerce is the digitalization of the physical distribution channel of the 4 Ps of marketing. E-commerce has a lot to offer both customers and sellers. When we are talking about businesses in E-commerce, we can see that there could be two types of businesses. Pure-click e-commerce ... Read More
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP