Krish1980
-
Animate a darts thrown at the screen
I came across something called Webgl - I think it might be worthwhile exploring this. http://www.hongkiat.com/blog/webgl-chrome-experiments/
-
Does anyone know how this was done?
Okay. Just a quick question. The end result would be the same as that of the image getting refreshed with another image of the same mannequin wearing a shirt of a different fabric, correct? (the guy I'm working with knows how to accomplish this…
-
Navigation menu box shadow confusion
In the mean time, how would i add the js into static html for practice? You don't need js if you are creating separate pages. As said earlier "Simply give the link an active class. For e.g, on the page art.html, give the 'art…
-
Navigation menu box shadow confusion
What is missing is that when a link is clicked that the "white box with drop shadow" doesn't move to the active state. Actually, when you are creating separate pages, you don't even need js. Simply give the link an active cl…
-
Navigation menu box shadow confusion
There http://codepen.io/Krish1980/pen/mGfed Goal achieved (although I bet this isn't what's being asked). When you create the contact page, give the 'contact' link an 'active' class. Now, what is it that you want to …
-
Navigation menu box shadow confusion
@krish1980 I'm trying to mimic the nav menu url below. That's a regular dropdown menu with a fade in fade out effect applied, via css or js. It's still unclear (to me, mind you - I'm not trying to be an ass, just trying to …
-
Navigation menu box shadow confusion
I can't seem to get the active hover state to keep the background. Don't quite understand what you are trying to achieve. I know a simple js solution that adds an active class on click or even hover, but I'm not even sure if that…
-
CSS and html checklist legal
Can one be sued for not following accessibility norms?
-
Off topic: Question about Malware
Is Chrome telling you that it's this specific script? No. I think it's probably the server that's infected. I was under the impression that the hotlink and the malware error might be connected, since both happened/were noticed at…
-
Off topic: Question about Malware
@Paulie I don't see anything suspicious. It's an easing script. There was a hotlink portion which I deleted, but the problem's still there. (the hotlink message's gone though) If you were to come across this problem, how would …
-
Making website text smooth
You could try this html { text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; } It works for me (Chrome and Safari). FF and IE renders smooth fonts by default, I think (at least that's how …
-
Buttons With Gradient CSS
You could use a number of factors to get that effect - a combination of css gradients, a little inner shadow (only if needed), and different colors for the border (give the top border a light color to mimic the highlight effect) Here's an old …
-
Unable to use jquery scrollbar multiple times . Check link
Found the solution: The div to which the scrollbar wasnt being applied was hidden by default, and as per the documentation, it would not be visible in such cases. The solution - modify the jquery as per the documentation. n order for the custom…
-
starter tutorials on Sublime and CodeKit
Installed the trial version, and going through the tuts. The thing that is immediately apparent is the speed of the interface.
-
As a front end person, what steps can I take to improve the speed at which the site loads?
Thank you every one for your inputs.
-
How to make arrows move left, right, up using margin or padding
Ugly way to do it http://codepen.io/Krish1980/pen/mLwau Till a more elegant solution comes along
-
can i get this gradient through css?
You could use the 'filter' property to make it work on IE9 http://codepen.io/Krish1980/pen/uAjDC and use the inner shadow property for added effect
-
[How]When hovering on a child div the main div changes color.
Ugly way to do it, with Javascript. I'm sure there are more elegant solutions. http://codepen.io/Krish1980/pen/Dmevp
-
Please help to fix menu to drop down menu
Give a list-style 'none' to the li. By the way, if you are creating a drop down, it might be better to give a background to the dropdown. And you'll have to use the hover function to show the dropdown which will be hidden by default.
-
This Type of Hover
Here http://codepen.io/Krish1980/pen/nbksj Please note: I am unable to make it ease out - perhaps there's a flaw in my css, so I hope some of the experts might be able to fix that. Edit - solved it. But I'm not sure if this method is ri…
-
This Type of Hover
I doubt you can get a smooth transition with display. If you give a left position -999em on normal, and a 0px on hover, you'll be able to get a smooth transition.(using the opacity transition property of course) Edit: Left:-999em will not make…
-
Major problems with css mega menu that I've coded
Thank you very much for the vertical align fix. you need more info from the programmer (why isn't he doing this?, what's the designer have to say?) - what happens when there is more content than the dropdown is allowed to be in width? …
-
jQuery collapsible panel
http://www.dynamicdrive.com/dynamicindex17/animatedcollapse.htm
-
css Fly out menu dissapearing
Unfortunately, I've discovered a flaw in the css menu that I've made. Will be posting a thread soon. I hope this will help you though, for now, http://www.designchemical.com/lab/jquery-vertical-mega-menu-plugin/getting-started/
-
css Fly out menu dissapearing
I've done that. Shall try to create a codepen asap.
-
Sub Nav Tabs
Just a question. Can max-width be specified? So that if it goes beyond a point, the div width will stop (this might help if say, while dynamically uploading values, a certain value is too large)?
-
Sub Nav Tabs
Outstanding! Just what I needed! Thanks a million!
-
Sub Nav Tabs
I know the answer to point1 http://codepen.io/anon/pen/Gdzuv Unfortunately, I do not know how to fix point 2. I've used a cheap fix, but it is shabby and has flaws(check codepen). If I do not specify a width to the dropdown, the dropdown will…
-
Confusing html5 validation warning message
Thank you very much CrocoDillon