Jump to content

elabx

Members
  • Posts

    1,303
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by elabx

  1. elabx

    Logo carousel

    Got it! Check it out on http://educacioninicial-puebla.org/ at the very bottom.
  2. RT @Kuvshinov_Ilya: Natsu no Zenjitsu watercolour fanart process! #夏の前日 https://t.co/08YmgsPhES

  3. elabx

    Logo carousel

    Yes! I gave up on that, let's say that the solution I decided upon would be to configure slick with options infinite:true and autoplay:true. So it kind of scrolls in discrete steps infinitely (placing first after last), though not the solution I looked for but it worked for the client I didn't try Reel because the animation doesn't look as smooth as I'd like to, but definitely the only option that looked similar to that Codecanyon plugin. (although after LostKobrakai's comment I saw the very little "stepping" in the animation) Btw, I forgot to ask him but, what would be better than using Jquery, CSS transforms? I thought it would be easier to find an already available solution as I have seen this fairly enough times, but doesn't seem to be, there's a develpment oportunity here I guess.
  4. elabx

    Logo carousel

    I always use slick and I don't know how the heck I didn't think about it first!!! By far one of my favourites, now that I read correctly it does say "the last carousel you will ever need", I always use it as a slider, maybe that's why it didn't cross my mind, damn, some useful time lost yesterday and today
  5. elabx

    Logo carousel

    Ended up using Owl Carousel 2 http://www.owlcarousel.owlgraphic.com/ Not exactly what I was looking for, but it will work for now, thanks!
  6. The one page scroller is something I'm always asked for, I have always used fullpage.js it has a lot of useful mumbo jumbo, nice to see another option! Then again, since I'm constantly asked for this line of design in websites, I feel it is that mobile oriented design is kind of filtering into desktop design, so I kind of understand your point of attracting this type of client who prefer more fanciness than "here's all you need to know about this bussiness in half page". Me, I don't know that to think anymore, haha, I just want their deposit in my bank account
  7. Yes! I agree on this too, forgot to mention, but it also happened to me.
  8. I had this idea yesterday of coding my website in livecoding once I have it designed, though I want to ask you people.. Do you think it's worth it if I'm kind of a noob? I mean, you won't be seeing some ninja code, more like toddler with crayons (although kids do have a lot of fun with their crayons!) Should it accomodate to the "processwire user distribution map", with this I mean that a lot of PW users seem to be in Europe and I live in America, so I the best strategy would have to be doing this either really late (to get to most of people really early), or really early (to get people in the late afternoon).
  9. elabx

    Logo carousel

    Hello everyone, Does anyone know of a free javascript/jquery solution I could use to achieve a logo carousel like this one? http://codecanyon.net/item/logo-carousel-jquery-logos-showcase/full_screen_preview/6261911
  10. I think it does look more modern than the previous site! It took me a while to "find" that there was a menu bar after scrolling a bit, I don't know if contrast is the issue, or maybe the thin fonts. Code it live in livecoding.tv! I'm kind of planning doing that with my own site (this related to other thread), as you said, it's a pain to "be happy" with your own work.
  11. Added my 2 cents! Tried to be diplomatic The largest discussion on reddit I have seen involving Processwire, nice!
  12. Indeed very nice site and great work too!
  13. Maybe it could take the approach of processwire-recipes.com? https://processwire-recipes.com/about/contribute/
  14. I cannot insist on how much this comment is true, I was a total PHP noob, never really understanding what I was doing with other CM's. Its like, before I was just scripting my way through life, with Processwire it feels a lot more like I'm actually programming. Now I'm just a noob actually learning programming along with Processwire.
  15. @Mike Making Automation is something I definitely lack, I kind of always feel slow to start, every new project a tad bit better, but always kind of slow paced. I will take your advice and think thoroughly on what I could put in these blueprints for future work. @OrganizedFellow I get you! It's like, right now, I get some weird looks amongst a few programming friends because I'm programming in godforsaken PHP. I guess that's probably one of the reason I've been really enjoying this forum, I don't talk that much about programming, but rather useful ways of doing things and solving problems, and creating great design with a really cool tool (looking at you PW), and well, it all happens to be a written in PHP and that's just fine with me.
  16. They all look great! The search bar in Sam Hofman's site was a nice surprise! And this one is my favorite of the three, I like the design and the content is really nice too.
  17. I think that fancybox 2 is more flexible in that kind of handling, though there is the license fee (which I think is worth it). Later you should check Magnific Popup, it's quite awesome too and totally free.
  18. I think it is best to echo the attribute directly in PHP, have you tried using the syntax used in the link Horst posted? (with the PHP tags in place) I have sometimes had trouble with the quotes and double quotes mixing when echoing attributes in HTML. Or if you post the PHP code you are using maybe we can spot the error.
  19. I think fancybox automatically grabs the title attribute as the text displayed below the image? I don't know if this is what you mean.
  20. Sometimes I feel horrible that I'm not using the cool kids tools, but truth be told I think none of my projects are that complex to really need this setup. Am I being lazy here? Should I actually try this tools to actually see the possible benefits? I mean, I do want to become a better webdev, just really haven't seen the need, I just feel that all that minification and optimized workflow works for complex stuff and when that time comes, I will make my move, meanwhile it feels like an overkill.
  21. I'm on the same track! Maybe a few meters ahead but not too far away haha, so any doubt you have don't hesitate to ask again. I believe Processwire is also an AMAZING tool to learn webdev too, I was always so lost with the tools I had tried before (the popular ones!) and with Processwire everything feels so within reach and little by little, as you go polishing your skills, Processwire unveils more of itself to accomplish what you want, I simply love that. Ok, enough PW love
  22. Hi Leopold, What you would need to do to add Fancybox is pretty simple, you just have to add the necessary javascript to the template that is rendering the current page (in this profile javascript is added in the _done.php template file, around line 117) and add the necessary CSS classes to your images. For example, in the previous link you posted about making galleries with PW, here is the part that echoes the linked thumbnail: echo "<p><a href='{$image->url}'><img src='{$thumbnail->url}' alt='{$thumbnail->description}' ></a></p>"; Let's say you want to use the CSS class "gallery" to mark which thumbnails will be "fancyboxed": echo "<p><a class='gallery' href='{$image->url}'><img src='{$thumbnail->url}' alt='{$thumbnail->description}' ></a></p>"; And according to the fancybox documentation, you would need to add this line of javascript (for basic functionality): $(".gallery").fancybox(); Just take a good look at where the javascript is added, because there is an IF statement that prepares the template in case the AIOM module is installed.
  23. It could be done with or without JS, input fields in HTML that are part of a form object will be send as the values in the URL specified in the action attribute, which can be the same page from when you are sending the data. So how do you handle this vars in the server if there is data in the POST variables? In the same template used by your page with the form, you can have something like this: if($input->post){ echo $input->post->fieldName; //Etc } I learned a lot about forms in PW from this post from Soma.
  24. Gists, and now I think I'll be using Gistbox
×
×
  • Create New...