Clickable area Shapes/Drawing tool

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Clickable area Shapes/Drawing tool

Post by Mary Abigail »

Hi

i want to create some buttons with WWB drawing tool (design my own buttons) and also use shapes as buttons, but i just want the click area to be limited to the shape/drawing itself. That being said, i have a vague idea that using the CSS overflow: hidden property and also the clip-path property (depending on the complexity of the shape, etc) can be used to create this effect. My question is:
is there an easy way to do this in WWB, i mean for each shape/drawing i create? the only thought that occurs to me is using the HTML object to achieve this goal but then again that is not very pratical...


thank you 🙂
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Clickable area Shapes/Drawing tool

Post by Pablo »

WWB will generate shapes as clip-path if you select CSS as output.
However, the links of shape will always be a rectangle, even if you use clip-path or overflow hidden.
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Re: Clickable area Shapes/Drawing tool

Post by Mary Abigail »

Hi Pablo

i can show you an example with the help of AI so you can see by yourself what i intend to do, here it goes

HTML

Code: Select all

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="styles.css">
  <title>Your Awesome Website</title>
</head>
<body>

  <a href="#" class="star-button">
    <img src="button.jpg" alt="Clickable Star Button">
  </a>

</body>
</html>

CSS

Code: Select all

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.star-button {
  display: inline-block;
  position: relative;
  width: 300px; /* Adjust the size as needed */
  height: 226px; /* Adjust the size as needed */
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-button img {
  display: block;
  width: 100%; /* Ensures the image takes up the full space within the star button */
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

is this possible within WWB?

thank you once again
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Re: Clickable area Shapes/Drawing tool

Post by Mary Abigail »

Image link to use with the code:

https://ibb.co/7CdV9jf
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Clickable area Shapes/Drawing tool

Post by Pablo »

You can use a Shape with output set to 'css' to generate clip-path shapes.
A shape can also have a background image.
You can make it 'clickable' via events.
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Re: Clickable area Shapes/Drawing tool

Post by Mary Abigail »

Pablo wrote: Sun Jan 21, 2024 7:56 am You can use a Shape with output set to 'css' to generate clip-path shapes.
A shape can also have a background image.
You can make it 'clickable' via events.
Hi Pablo

i've tried it out, but then again it's not clickable only inside the shape itself, it is clickable outside as well, outside it's vertices and edges, that is not what i want it to do
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Clickable area Shapes/Drawing tool

Post by Pablo »

Sorry, this is how it works.
User avatar
crispy68
 
 
Posts: 3006
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Clickable area Shapes/Drawing tool

Post by crispy68 »

I quickly looked at the code you provided versus what I see WB generates and it looks to me that the clip-path in your example is being applied to the actual <a> tag where WB applies it to the image div.
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Re: Clickable area Shapes/Drawing tool

Post by Mary Abigail »

crispy68 wrote: Sun Jan 21, 2024 3:29 pm I quickly looked at the code you provided versus what I see WB generates and it looks to me that the clip-path in your example is being applied to the actual <a> tag where WB applies it to the image div.
Hi Crispy

Yes, correct. I've tried out other irregular shapes and it does not work, i mean, there's a set of "official" shapes that will work as excpected, but not all. I'm not a pro at code, but i love to learn and i always wanted to do this for a long time. Thank you 😊
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Clickable area Shapes/Drawing tool

Post by Pablo »

Unfortunately, WWB's shape is not as simple as the one in your example.
For example, WWB's shape is responsive in fixed layouts and flexible in layout grids and much more.
When applying the clip-path to the link, this will no longer work.

But, I will investigate if events can be moved to the inner div, then it's no longer necessary to add the anchor wrapper for events. And it would be possible can make it clickable without using a link.
Although, I am not sure if this will break existing functionality...
User avatar
Mary Abigail
 
 
Posts: 168
Joined: Thu Jul 08, 2021 9:46 pm
Location: Lisbon, Portugal

Re: Clickable area Shapes/Drawing tool

Post by Mary Abigail »

Pablo wrote: Sun Jan 21, 2024 4:54 pm Unfortunately, WWB's shape is not as simple as the one in your example.
For example, WWB's shape is responsive in fixed layouts and flexible in layout grids and much more.
When applying the clip-path to the link, this will no longer work.

But, I will investigate if events can be moved to the inner div, then it's no longer necessary to add the anchor wrapper for events. And it would be possible can make it clickable without using a link.
Although, I am not sure if this will break existing functionality...
I see. That would be awesome specially in all sorts of shapes, but i suppose it's not possible in all of them, just in some. Here's a website i visited some time ago that shows you the shapes where clip-path will work. I know it will be possible to apply something similar to clip-path in every shape you create in a near future with some kind of web technology, but maybe that evokes some existent (or new) JavaScript library, etc.. !? this is just a thought of mine

Here's the website:
https://bennettfeely.com/clippy/
Mary

"It was always my belief that rock and roll belonged in the hands of the people, not rock stars" - Patti Smith
Post Reply