• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

rectangle de délimitation

New Here ,
Sep 11, 2020 Sep 11, 2020

Copy link to clipboard

Copied

Hello, mon problème est simple: je voudrais créer un tracé tout simple sur Illustrator et l'importer ensuite tel quel sur Muse. Le problème est que quel que soit le format ou le mode d'importation, j'importe en même temps le rectangle de délimitation qui entoure mon graphique. Est-ce possible de le supprimer ou au moins de le rendre transparent aux clics que mon tracé est ensuite susceptible de générer? Peut-on manipuler une image d'une autre forme que rectangulaire; par exemple courbe ou réduite à sa silhouette?

Views

129

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 11, 2020 Sep 11, 2020

Copy link to clipboard

Copied

Me, I cannot help you, because not use Illustrator and do not understand what you want to achieve but I highly recommend to not use Muse for this purpose as Muse is under EOL since 2018.

 

Kind Regards,

Uwe

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 14, 2020 Sep 14, 2020

Copy link to clipboard

Copied

LATEST

Muse is discontinued and unsupported.  Don't use Muse for new projects.

 

All web images are shaped like a box -- either square or rectangular.  With some CSS code, you can make your JPG or PNG images appear to have rounded corners like this.

 

image.png

 

HTML & CSS CODE:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS Grid Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1"><meta http-equiv="X-UA-Compatible" content="IE=edge">

<style>
.container { 
display: grid;
grid-column-start: col 0;
grid-gap: 5px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-template-rows: repeat(auto-fit, 1fr);
}

.container img {
vertical-align: baseline;
max-width: 100%;
height: auto;
border-radius: 50%;/**rounded corners**/
}
</style>
</head>
<body>
<div class="container">
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
<div> <img src="https://dummyimage.com/650x490>" alt="placeholder"></div>
</div>
</body>
</html>

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines