Hey Armin!
Same issue here. In order to customize the map is necessary to use this plugin instead the iframe you mentioned, and it seems that Google Map plugin is not working on Lay.
Hey Armin!
Same issue here. In order to customize the map is necessary to use this plugin instead the iframe you mentioned, and it seems that Google Map plugin is not working on Lay.
Hey Armin,
Now with the "Thumbnail Grid" would be good to have an option to can have multiple categories in order to be able to "filter" projects automatically. Let me know if it makes sense.
Thanks!
Hey Armin,
I think it would be great to have the choice to open the projects as a pop-up, with a close button. I think is kind of a portfolio trend nowadays and it makes easier to navigate when the projects have just a few pics.
Cheers!
Great, sorry. It was hidden. Thanks!
Hey Armin,
It would be great to have an option to display a second text field on Thumbnail Grid, like http://meireundmeire.com is doing with the client name.
Cheers!
@arminunruh I'm using Carousel and it seems to work fine. Actually that's why I wanted to achieve this, to avoid zooming when touching to navigate between slides on Carousel.
It suddenly started working well. :confused:
Yeah, you are right. I just found it out.
In case somebody is interested, I've got this code which did the trick:
<script>
document.documentElement.addEventListener('touchstart', function (event) {
if (event.touches.length > 1) {
event.preventDefault();
}
}, false);
var lastTouchEnd = 0;
document.documentElement.addEventListener('touchend', function (event) {
var now = (new Date()).getTime();
if (now - lastTouchEnd <= 500) {
event.preventDefault();
}
lastTouchEnd = now;
}, false);
</script>
Hey Armin,
I am using a footer in my about page, where the text isn't long enough to make it scroll on a desktop screen, but the footer doesn't stick at the bottom in Safari, it needs to be scrolled to visualize it. It works perfectly in Chrome.
Thanks
Hey Armin,
I have noticed (not sure if since the last version) that now you can zoom using multi-touch on devices. It seems like a non-responsive behaviour. Any way to avoid it?
Thanks
On both Chrome and Safari.
Hey Armin,
I noticed that when you are using a project title on hover, the text looks blurry during the transition. I tried to fix it using "text-align: center" instead the transform property, and some other CSS lines, and it looked fine but I couldn't make the vertical align.
Any ideas/plans about fixing it? It's really bad looking.
Thanks
Hey Armin,
Is it possible to make a link inside a project which brings you back to the previous page position? It would be specially useful in projects using Fullscreen Slider.
Example: http://www.thisiscatalogue.co.uk/archive
The X inside the project is the button I mean.
Thanks!
Hey Armin,
I just noticed this CSS is affecting to the transitions between pages too. Any way to avoid it?
Thanks!
Hey Armin,
I was trying to center some text and I have noticed that.
Thanks
Great! Thanks!
It wasn't working for me at the beginning, so I tried to change some options and I found out it doesn't work with the "Show a scroll bar" activated.
I'm using a cubic bezier, is really nice. :D
Hey Armin,
I've been looking deeply in the CSS but I couldn't find it: is there any to set the transition type for the Auto Scrolling on the Fullscreen cover? (ease, linear...)
Thanks a lot.
Awesome! Thanks!
Hey Armin,
Is it possible with some CSS to change the site title and menu color for individual slides on Fullscreen slider? I have some dark and some lighter ones and it would be great.
Thanks
I'm working on localhost, as soon as I upload it I'll send you the link.