Top Quality Products

Newspaper Flipbook -jQuery

4.52
Expert ScoreRead review

$25.00

Added to wishlistRemoved from wishlist 0
Add to compare

982 sales

LIVE PREVIEW

Newspaper Flipbook -jQuery

Introduction

As a developer, I am always on the lookout for innovative and effective ways to create engaging and interactive online experiences. Newspaper Flipbook – jQuery is a plug-in that caught my attention with its impressive features and versatility. In this review, I will delve into the various aspects of this plug-in and provide a comprehensive overview of its performance.

Overview

The Newspaper Flipbook – jQuery is a responsive and intuitive plug-in that allows developers to create digital flipbooks that can be easily accessed online. The plug-in is compatible with a range of browsers, including Firefox, Chrome, Opera, Safari, and IE10+.

Key Features

The plug-in boasts a range of impressive features that make it stand out from the competition. Some of the key features include:

  • Bookshelf for Flipbooks: The plug-in comes with a built-in bookshelf feature that allows developers to organize and present their flipbooks in an attractive and easy-to-use manner.
  • PDF Render: The plug-in includes an awesome library called PDF.js, which allows flipbooks to read PDF files without converting them to JPEG files. This feature ensures that the integrity of the original PDF files is preserved.
  • Manually Adding Pages: Developers can also add pages individually as JPG files in the HTML code.
  • RTL: The plug-in offers a reverse flipbook feature for countries that read from right to left.
  • All Features: The plug-in is packed with an impressive range of features, including zooming, linking, audio, and more.

Performance

The Newspaper Flipbook – jQuery performed remarkably well in my tests, with fast loading times and smooth navigation. The PDF render feature worked seamlessly, and the flipbook feature was easy to use.

Design and User Interface

The plug-in comes with a sleek and modern design that is easy on the eyes. The UI is intuitive, making it easy for developers to set up and customize their flipbooks.

Compatibility and Browser Support

The plug-in is compatible with a range of browsers, including Firefox, Chrome, Opera, Safari, and IE10+. This ensures that developers can reach a wider audience with their flipbooks.

Price

The Newspaper Flipbook – jQuery is available at a price of $8, making it an affordable option for developers.

Conclusion

In conclusion, the Newspaper Flipbook – jQuery is an impressive plug-in that offers a range of features and tools that make it easy for developers to create engaging and interactive online experiences. With its fast performance, sleek design, and compatibility with a range of browsers, this plug-in is an excellent choice for developers looking to create memorable flipbooks.

Score

I give the Newspaper Flipbook – jQuery a score of 4.52 out of 5 stars. The plug-in’s impressive features, design, and performance make it an excellent choice for developers. However, the need for more customization options is a minor drawback that detracts from the overall rating.

Recommendation

I highly recommend the Newspaper Flipbook – jQuery to developers looking to create digital flipbooks that are easy to use, engaging, and memorable. With its impressive range of features and tools, this plug-in is an excellent choice for anyone looking to create digital flipbooks that stand out from the crowd.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Newspaper Flipbook -jQuery”

Your email address will not be published. Required fields are marked *

Introduction to Newspaper Flipbook - jQuery

The Newspaper Flipbook is a jQuery plugin that allows you to create an interactive flipbook effect, similar to those found in online newspapers and magazines. With this plugin, you can easily create a responsive and engaging user experience that simulates the feeling of flipping through a physical publication. In this tutorial, we will cover the basic usage and customization options of the Newspaper Flipbook - jQuery plugin.

Requirements

  • Basic knowledge of HTML, CSS, and JavaScript
  • A jQuery library included in your project (version 1.7 or later)
  • The Newspaper Flipbook - jQuery plugin (available for download from the plugin's GitHub page)

Step 1: Adding the Newspaper Flipbook Plugin

To use the Newspaper Flipbook plugin, you need to include it in your project. You can do this by downloading the plugin and including it in your HTML file, or by linking to a CDN-hosted version of the plugin. Here's an example of how to include the plugin using a CDN:

<head>
    <script src="https://cdn.jsdelivr.net/npm/newspaper-flipbook@1.0.0/dist/newspaper-flipbook.min.js"></script>
</head>

Alternatively, you can download the plugin and include it locally:

<head>
    <script src="path/to/newspaper-flipbook.min.js"></script>
</head>

Step 2: Creating the Flipbook Container

Create a new HTML element to serve as the container for your flipbook. This element should have a unique ID, which you will use to target it with the plugin. For example:

<div id="myFlipbook"></div>

Step 3: Adding the Flipbook Pages

Create individual HTML elements to serve as the pages of your flipbook. Each page should have a unique class, which you will use to identify it with the plugin. For example:

<div class="page" data-page-num="1">Page 1 content</div>
<div class="page" data-page-num="2">Page 2 content</div>
<div class="page" data-page-num="3">Page 3 content</div>

Note that the data-page-num attribute is used to store the page number, which will be used by the plugin to determine the page order.

Step 4: Initializing the Flipbook

Use the newspaperFlipbook function to initialize the flipbook plugin, targeting the container element and passing in the options object:

$(document).ready(function() {
    $('#myFlipbook').newspaperFlipbook({
        pages: '.page',
        container: '#myFlipbook',
        nav: false,
        transitions: true,
        flip: {
            speed: 1000,
            easing: 'ease-out'
        }
    });
});

In this example, the options object specifies the following:

  • pages: The selector for the page elements (.page)
  • container: The ID of the container element (#myFlipbook)
  • nav: Whether to display navigation buttons (set to false in this example)
  • transitions: Whether to display page transitions (set to true in this example)
  • flip: Object containing options for the flipping animation:
    • speed: The duration of the flipping animation (set to 1000 milliseconds in this example)
    • easing: The easing function to use for the animation (set to ease-out in this example)

Step 5: Customizing the Flipbook

The Newspaper Flipbook plugin provides several options for customization. Here are a few examples:

  • Background Image: Set the background image for the flipbook using the background-image option:
    $('#myFlipbook').newspaperFlipbook({
    ...
    background-image: 'path/to/background-image.jpg'
    });
  • Text Shadow: Add a text shadow to the page elements using the text-shadow option:
    $('#myFlipbook').newspaperFlipbook({
    ...
    text-shadow: '1px 1px rgba(0,0,0,0.2)'
    });
  • Page Margin: Adjust the margin between pages using the page-margin option:
    $('#myFlipbook').newspaperFlipbook({
    ...
    page-margin: 20
    });

    These are just a few examples of the customization options available with the Newspaper Flipbook plugin. Be sure to check the plugin's documentation for more information on available options and how to use them.

Conclusion

In this tutorial, we covered the basic usage and customization options of the Newspaper Flipbook - jQuery plugin. By following these steps, you should now be able to create your own interactive flipbook experience using this plugin. Experiment with different options and customizations to create a unique and engaging user experience for your users.

Here is an example configuration for Newspaper Flipbook:

Settings


// General settings
 newspapers: {
  flipCount: 10,                           // number of pages visible at once
  coverPage: 0                                  // default cover page offset
 },

// Flip card settings
 flipCardParams: {
  widthSlider: 100,            // width of the slider/flip cards
  topSliderMargin: 140,      // top marginal distance for the slider    
  slideWidth:80,                // width size of the slide

  coverPageWidth:newspaperWidth,                
  coverPageHeight:function(){ return newspaperHeight;
},
coverPageOffset:[0,0],                          // [x,y coordinate]

Initial settings

newPaperParams = {
  title: 'Newspapper',                
  description:,                    
  keywords:,                                          // add your keywords

  pageWidth:760,                                        // width pages
  pageHeight;                                           // height pages                       
  zoom: 140,                                         // zoom at startup 
  coverId: "cover",                      // ID of the 
  newPaperId "newspaper",                                  // ID of the 

  initialPage: page0;                              // show this page at startup   

Page Object

page_0: {
  pic: ["img/page[0]/page[4].jpg"],   'image src',
  picScale:0.5                  // picture scale

},

Responsive settings

 $(window).resize(function"){  
   // doomething on resize
   reSize(newspaper Width, newspaper Height);
");  
   // set Newspaper dimensions
   SetNewspaperWidth/newspaper Width;

Here are the features mentioned in the Newspaper Flipbook - jQuery plugin:

  1. No need to buy and install additional libraries
  2. Bookshelf jQuery Plugin (+$8)
  3. Page Mode (double or single or auto) for mobile devices (changes to single page with portrait orientation)
  4. Unlimited areas of active links for each page (hotspot)
  5. FlipBook in a Lightbox (uses AJAX, works offline in Firefox browser)
  6. PDF render (reads PDF files without converting to JPG files, uses PDF.js library)
  7. Works on iPad, iPhone, etc. (no Flash Player needed)
  8. Sound when flipping page
  9. Support for tags in description in page: heading (h1-h6), paragraph (p), link (a), list (ul, li), img and float right and left for image
  10. RTL (right-to-left flipbook for eastern countries)
  11. Icon for full screen (only works in FF and Chrome)
  12. Change zoom to double click the mouse
  13. Change zoom step for zoomIn and zoomOut
  14. Enable/disable deeplinking (string at the end of the browser's address)
  15. Responsive design
  16. Unlimited number of pages in flipbook
  17. Lazy loading (loads only necessary pages)
  18. Create an unlimited number of flipbooks
  19. Double pages
  20. Show all pages
  21. Excellent tools to zoom
  22. Plugin flipbook is 100% compatible with the theme Avada

Note that some of these features may be mentioned multiple times in the text, but I've only listed each feature once in the above list.

Newspaper Flipbook -jQuery
Newspaper Flipbook -jQuery

$25.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0