using material box for card images
See original GitHub issueI am trying to use material box for card images. My target is to click on card image and view it fullscreen.
<div class="card large hoverable">
<div class="card-image">
<img materialize="" class="materialboxed" width="650" src.bind="movie.poster">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">${movie.title + " - " + movie.imdbRating}<i class="material-icons right">more_vert</i></span>
<p>${movie.genre.join(', ')}</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">${movie.title}<i class="material-icons right">close</i></span>
<p>${movie.director}</p>
<p>${movie.genre.join(', ')}</p>
<p>${movie.actors.join(', ')}</p>
<p>${movie.plot}</p>
</div>
</div>
The problem is that it could not make the image container bigger. So the image will be zoomed but because the container is small it couldn’t show all of the image.
Issue Analytics
- State:
- Created 8 years ago
- Comments:5
Top Results From Across the Web
Material Ui Full Image Card
Full image Material Ui card with text and action overlay. card. material-ui-react ... Fill Image Card Component Imports --- //. import {. Browser....
Read more >Material UI - Designing Media Cards - YouTube
Material UI - Designing Media Cards. 8.3K views 1 year ago Material UI ... 8.3K views 1 year ago Material UI ... How...
Read more >Cards - Material Design
Cards are surfaces that display content and actions on a single topic. They should be easy to scan for relevant and actionable information....
Read more >Mini Card BoxTutorial... | Box template, Paper crafts ...
I am a visual learner, so seeing pictures along with the directions has always been ... Easy-to-follow tutorial on how to make a...
Read more >Card
Overview for card ... <mat-card> is a content container for text, photos, and actions in the context of a single subject. Basic cards....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Fixed in 37c9d7941d6fa0b1a35e055b70d34e6afe634e4c
If you don’t want to remove overflow: hidden yourself, materialbox will now look for ancestors with overflow hidden and remove that attribute and then reset them to their original overflow when you exit out of the materialbox.
is there an example how to remove hidden overlow because i didn’t get it