Experiment reduce radius for uncropped images
This commit is contained in:
parent
88e36183c6
commit
17230fc690
2 changed files with 43 additions and 12 deletions
|
@ -338,19 +338,46 @@ function Media({
|
||||||
onLoad={(e) => {
|
onLoad={(e) => {
|
||||||
// e.target.closest('.media-image').style.backgroundImage = '';
|
// e.target.closest('.media-image').style.backgroundImage = '';
|
||||||
e.target.dataset.loaded = true;
|
e.target.dataset.loaded = true;
|
||||||
if (!hasDimensions) {
|
|
||||||
const $media = e.target.closest('.media');
|
const $media = e.target.closest('.media');
|
||||||
if ($media) {
|
if (!hasDimensions && $media) {
|
||||||
const { naturalWidth, naturalHeight } = e.target;
|
const { naturalWidth, naturalHeight } = e.target;
|
||||||
$media.dataset.orientation =
|
$media.dataset.orientation =
|
||||||
naturalWidth > naturalHeight ? 'landscape' : 'portrait';
|
naturalWidth > naturalHeight ? 'landscape' : 'portrait';
|
||||||
$media.style.setProperty('--width', `${naturalWidth}px`);
|
$media.style.setProperty('--width', `${naturalWidth}px`);
|
||||||
$media.style.setProperty(
|
$media.style.setProperty('--height', `${naturalHeight}px`);
|
||||||
'--height',
|
|
||||||
`${naturalHeight}px`,
|
|
||||||
);
|
|
||||||
$media.style.aspectRatio = `${naturalWidth}/${naturalHeight}`;
|
$media.style.aspectRatio = `${naturalWidth}/${naturalHeight}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check natural aspect ratio vs display aspect ratio
|
||||||
|
if ($media) {
|
||||||
|
const {
|
||||||
|
clientWidth,
|
||||||
|
clientHeight,
|
||||||
|
naturalWidth,
|
||||||
|
naturalHeight,
|
||||||
|
} = e.target;
|
||||||
|
if (
|
||||||
|
clientWidth &&
|
||||||
|
clientHeight &&
|
||||||
|
naturalWidth &&
|
||||||
|
naturalHeight
|
||||||
|
) {
|
||||||
|
const naturalAspectRatio = (
|
||||||
|
naturalWidth / naturalHeight
|
||||||
|
).toFixed(2);
|
||||||
|
const displayAspectRatio = (
|
||||||
|
clientWidth / clientHeight
|
||||||
|
).toFixed(2);
|
||||||
|
const similarThreshold = 0.05;
|
||||||
|
if (
|
||||||
|
naturalAspectRatio === displayAspectRatio ||
|
||||||
|
Math.abs(naturalAspectRatio - displayAspectRatio) <
|
||||||
|
similarThreshold
|
||||||
|
) {
|
||||||
|
$media.classList.add('has-natural-aspect-ratio');
|
||||||
|
}
|
||||||
|
// $media.dataset.aspectRatios = `${naturalAspectRatio} ${displayAspectRatio}`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
onError={(e) => {
|
onError={(e) => {
|
||||||
|
|
|
@ -1070,6 +1070,10 @@
|
||||||
--aspectWidth: calc(--width / --height * var(--maxAspectHeight)); */
|
--aspectWidth: calc(--width / --height * var(--maxAspectHeight)); */
|
||||||
width: min(var(--aspectWidth), var(--width), 100%);
|
width: min(var(--aspectWidth), var(--width), 100%);
|
||||||
max-height: min(var(--height), 33vh);
|
max-height: min(var(--height), 33vh);
|
||||||
|
|
||||||
|
&.has-natural-aspect-ratio {
|
||||||
|
--media-radius: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.status .media-container.media-eq1 .media[data-orientation='portrait'] {
|
.status .media-container.media-eq1 .media[data-orientation='portrait'] {
|
||||||
/* width: auto;
|
/* width: auto;
|
||||||
|
|
Loading…
Add table
Reference in a new issue