Title : Looping Horizontal Scroll:

Description: Horizontal scrolling is a page navigation method in which the user scrolls left and right to reveal content from the sides of the window or container.The scroll wheel causes the page to move horizontally across the screen rather than vertically. How to use:In this example, I’ve created a <div> container element with a width of 500… Continue reading Title : Looping Horizontal Scroll:

Smooth Modal Popup Plugin with jQuery and CSS3 – needPopup: 

Modal popups are used pretty frequently on the web. Some popular uses of them include driving newsletter sign ups, displaying notifications/alerts, and handling register and login forms.needPopup is a lightweight and cross-browser jQuery plugin which allows to display a responsive, nice clean modal popup with CSS3 powered animations on our web site.How to use it:1.… Continue reading Smooth Modal Popup Plugin with jQuery and CSS3 – needPopup: 

Title: How to Use getTime() to Generate Timestamps in JS

In my previous task i used this method. In JavaScript, timestamps are usually associated with Unix time. And there are different methods for generating such timestamps. var timestamp = new Date().getTime(); console.log(timestamp)// 1660926192826 In the example above, we created a new Date() object and stored it in a timestamp variable. We also attached the getTime()… Continue reading Title: How to Use getTime() to Generate Timestamps in JS

Media queries with j-query using match media.

Media Query in JQuery: As you know that Media Query was created in CSS. It is used to create responsive web pages. Means that it can display the web contents & layouts in different size of devices with proper format. So, It is widely used to create a user-friendly & mobile-friendly website.In most cases, developers need… Continue reading Media queries with j-query using match media.