JoniGiuro
-
An easier way of doing things
Hi, I made a demo of what could be a solution with jQuery: http://jsfiddle.net/jonigiuro/eJ6uP/ You could add some "loading" icon when the image is loading.. I'm not really sure what you're asking with "with that you coul…
-
Horizontal Scrolling - but only a part of a website
I don't really agree with your sentence "the most people have their mouse mostly in the middle of the browser", especially if they just typed your address in the URL box in their browser, they will probably have the cursor somewhere o…
-
Horizontal Scrolling - but only a part of a website
Hi Swiss bro ;) I wouldn't recommend to have a mixed horizontal / vertical scrolling page as this is extremely annoying for the people. Imagine you visit the site and start scrolling. The page starts scrolling and then it stops and you don'…
-
Feedback on jQuery plugin
I know ages passed, but here I am again. I just changed job so I had absolutely no time to look into that. Anyway, you are right, the example did not work on codepen because I changed a class in the documentation page and forgot to adapt the script.…
-
Equal headings height
I don't think it's possible with pure CSS. Here's a solution with jQuery: http://jsfiddle.net/UMjA7/4/
-
Padding, what are you doing? Padding! NO! STAHP!
ok, I'll give it a try, thanks
-
Webpage not scrolling with the Apple touch pad...
If you could provide a link we might be able to help
-
codepen doesn't like my js?
you need to add "()" at the end of the function if you want to run it whenever the browser sees it. function funcitonName(){ //do your magic here }();
-
codepen doesn't like my js?
var displayMain = function() { document.getElementById("main").style.display="block"; alert('js is loaded') }();
-
cross browser and mobile friendly testing
If you want to develop websites you'll need to install all the browser, my setup is: Google Chrome (default - with developer tools) Firefox (with deveolper tools) Safari Ie (7,8,9) and for mobiles I use my iphone 4 with chrome/firerfox to tes…
-
How to run a jquery function but only when the browser window width is > 1024px?
you could do: $(document).ready(function() { var pageWidth = $(window).width(); var body= document.getElementsByTagName('body')[0]; var script= document.createElement('script'); script.type= 'text/javascript…
-
z-index question i.c.w. lavalamp menu
I don't know how the lavalamp works but I created a version that should be easy to set up http://jsfiddle.net/jonigiuro/MLbYW/8/
-
Need to float and slide box containing products
I think position fixed is what you need: http://jsfiddle.net/jonigiuro/SrHcU/
-
Website layout tips and critique
When I opend the site my eye fell on the menu on the top right and I thought "I don't like that menu". I'm not sure why thought. I like the rest ;)
-
What are you listening to while you code?
Everything! Really I listen from classical music to metal to rock and roll to rap. Some people would say I have no personality, I prefer the term "open minded". When I'm working on something complicated it usually happens that the pla…
-
STATUS on true live editing code
Personally I'm against live updating. I want to see the page refresh, so the eye will immediately catch elements that move or go "out of place" after a certain change in code. I think live updating increases the risk of errors
-
Working with a designer whose work you hate
I think you should tell them from a technical point of view. Tell them a flash menu is not the best idea since iDevices won't be able to navigate the site. Tell them web-videos have new standards and show them some good examples. You're th…
-
Vertical Slide In Responsive Box
Here's how I'd do it: http://jsfiddle.net/vSd2K/8/
-
Coding a curvy menu buttons
I don't think there's a safe and quick way to do it without javascript/flash or image maps.. You'll always end up clicking the wrong element when the pointer is in between two tabs
-
Substring headaches
Why are you using an integer key for the $array ? An array already has integer keys. sorry I didn't notice it was posted in php and I thought you were speaking about js ($array, stupid me..), but you might be able to do pretty much the same thi…
-
Internet Explorer Float Issue?
I would place each image and description in a div and float those
-
Testing for not true vs true
I think it's because some stuff might have a default value of false, so if you test for true you're really sure it's true because it has to be..if it makes sense...
-
Slideshow/Carousel mark up (responsive)
here's the link to the complete version of Claudio http://jsfiddle.net/q7yuj/4/
-
diagonal line
Here's my attempt: http://zhereicome.com/experiments/statics/line/ It only works for chrome for now, because I was too lazy to add all the prefixes in the js and css. the script: scrW = $(window).width(); scrH = $(window).height(); angle = (…
-
How to add effects nodes to webAudioApiForDesigners.js
I tried the demo from the webaudioapi on github and I noticed it need to be run from a web server. Sounds are not played when I open the file from the hd but they do when I use xampp as an apache server. It might sound stupid but it could be your pr…
-
critique my website be brutally honest
-I think it looks more like a News website. -this image http://www.michaeldesigncompany.com/images/slider.jpg looks like an advertisement banner. (and what's the point of loading a bigger image and then scale it with css? It would be fine if yo…
-
DIV (and content) to image
is this what you're looking for? https://github.com/niklasvh/html2canvas http://html2canvas.hertzen.com/
-
jquery navigation
Yes, just change all the widths/heights
-
CSS Effects on CSS-Tricks
based on John's solution: http://jsfiddle.net/9BMfk/5/
-
Confused about float behaviour
remember that using border will increase the width of the element. For example, if you have this css rule: div{ width:200px; border:10px solid #000; } the total width will be 200+10+10 = 220px. The same thing happens if you use percentage widths. …