Skip to content

Blog

How do I show some particular div after scroll 100 px?

  • by

You can achieve this by using javascript pageYOffset property to show the div after 100px of scroll.
The pageXOffset and pageYOffset properties returns the pixels the current document has been scrolled from the upper left corner of the window, horizontally and vertically.
The pageXOffset and pageYOffset properties are equal to the scrollX and scrollY properties. These properties are read-only.
Let us see the code:

 Read More »How do I show some particular div after scroll 100 px?

php_paypal

How to Integrate PayPal Standard Payment Gateway in PHP

  • by

PayPal is an American international e-commerce business allowing payments and money transfers to be made through the Internet. PayPal is the most popular payment gateway to send and receive payment worldwide. PayPal is a widely used payment gateway to accept payment in the web application. PayPal payment gateway is the easiest option for the web developer to implement a payment system on the website.

Read More »How to Integrate PayPal Standard Payment Gateway in PHP

Python Datetime

How to use DateTime time in Python?

  • by

In this article, you will learn to manipulate date and time in Python with the help of examples.
Python has a module named datetime to work with dates and times. Let’s create a few simple programs related to date and time before we dig deeper.

Python Dates

A date in Python is not a data type of its own, but we can import a module named datetime to work with dates as date objects.

Python Datetime

Read More »How to use DateTime time in Python?