DEV Community

Cover image for NPM - Meet my friend paul 👨‍🦰 👨‍🦰
Lucas.T
Lucas.T

Posted on

NPM - Meet my friend paul 👨‍🦰 👨‍🦰

Make Paul appear on your page when you click


Why ?

I have a friend called Paul, he loves beer and he works hard everyday, so I decided to honor him with this little package each time you'll click on a DOM element my friend Paul will appear randomly on your web page :) Enjoy !!

it is him 👇
My friend paul

Install 🚀

Use Paul via a CDN by including this script:

Add this script just before your </body> closing tag:

<script crossorigin src="https://unpkg.com/@luctst/paul/umd/paul.client.min.js"></script>
Enter fullscreen mode Exit fullscreen mode

You now have access to the Paul() function to see how to use it check the api section below.

Example 🖍

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Hi Paul 👨‍🦰</title>
</head>
<body>
    <script crossorigin src="https://unpkg.com/@luctst/paul/umd/paul.client.min.js"></script> 
    <script>
        Paul();
    </script> 
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

API 🧑

Paul([DOMElement], [friends])

The Paul function create an img with my friend Paul.

  • DOMElement {HTMLElement, optional} - If this argument is specified the click event will be attached on this DOM Element.
  • friends {Array, optional} - If this argument is specified the function will display randomly an img from the friends array.

Contribute 🍰

If you want to add other pictures, please do not hesitate to PR some pictures in this folder https://github.com/luctst/paul/tree/master/static


Happy coding ✨ 🦄

Top comments (0)