Anyone have Duotone icons listed in, say, a javascript list like this:
["fa-bus-alt","fa-fill-drip",...]
or are there any ready-to-use scripts to extract such list?
Related
I'm essentially trying to click on profile pictures and have a card show up with a description below each profile picture. Here is a mock-up of what I am attempting. I have tried several things (using the global on-click JavaScript functionality) but I am struggling to format correctly.
What approach would you take to implement something like this:
I am web developer who is currently working on a project which requires me to do something much more advanced than anything I've ever done before, so if anyone could help it would be heaps appreciated! :) At the moment 1 product image is displayed as the main product image, and there is a sidebar with the rest of the product images. I need them to all be part of one scrollable column like the example below.
Here is an example of what I need to achieve
https://www.ssense.com/en-au/men/product/vetements/black-genetically-modified-volunteer-puffer-jacket/2233187
I want to change color of a Wordpress theme. The problem is that I can not use "search and replace" of the current CSS file. I must override all color settings in a separate file (in a child theme). And there are over 100 different settings with the color.
I need to collect all selectors and the CSS settings that contains this color and overide it by a new CSS file.
I would like this:
#some_id{width:100px;background:#ff0000;}
.some_class{height:100px;background:#ff0000;color:#ff0000;}
a:hover{color:#ff0000;font:12px/arial}
To become this:
#some_id,.some_class{background:#ff0000;}
.some_class,a:hover{color:#ff0000;}
Any one know a tool or script for that?
I know some basic PHP and Javascript.
Does your wordpress theme have different "skins" for different colors? Like is there a setting where you can pick from a few limited pre-set colors that will turn all these 100+ elements that color? If so there is probably a CSS file somewhere for each color option they provided (for example green.css, blue.css). you can copy/paste the code from there to find all the selectors
I am trying to build a dynamic query based on the user selections from the items that are arranged in a tree like structure. Once the user selects an item from the tree, I should display the conditions (like equals, not equals, wild card match etc) and text field to enter a value. Users will be able to select more than one item from the tree and provide values. Items in the tree are grouped by their type (or parent). After all the selections, I compose a query (sql like) form the user input. I would like to do this using Javscript and back end is supported by java code. In my research I found out that there are many JQuery plugins to display the tree like structure. I want to take the community input on building other types of visualization for this. Is there any other better way to graphically display this to the user instead of a Tree like structure?
Thanks.
I want to create a map dynamically and display it on the website. You can call it to be more of a graph than a map. Here I take the source and destination from the database. There can be many sources to a destination or many destinations for a source or both. Also there can be many other locations directed to/from source/destination. Source and Destination will always be there. But other locations are optional. So for example the route could be
L1 --> L2 --> Source --> Destination --> L3 --> L4.
where L1-L4 are locations (optional)
I want to depict this diagrammatically on a website. The user should be able to click on a each location/path (depicted as the arrow line above) and a popup should be opened. In the popup some data editing can take place. Also along the path(arrow line) some data has to be displayed. Basically all HTML,JS functionality should be available for this diagram.
Can someone please suggest me which language I can use for this?
I checked out some of the map APIs. But they expect some kind preloaded image to be present. That is not possible in my case.
The site I'm working on similar to any air fare info site, where we select multi city and get different rates for different airlines. I want to show this graphically with nodes representing locations and lines representing paths and should show rates along paths and stuff like that.
Any pointers will be appreciated.
Thanks
Some of your options are: SVG, HTML Canvas, or HTML+CSS. Given your desire to track events per object, I would rule out HTML Canvas: binding events to objects in a retained drawing system is much easier than manually processing events based on mouse position.
I would recommend using either SVG (if you can limit yourself to browsers that support it) or a drawing API like Raphaël to abstract support over SVG and VML for IE. You will have far more flexibility of drawing and hit detection than using HTML divs plus backgrounds.
Although I haven't used it, Google found the Joint library (that uses Raphaël) for a higher abstraction than the drawing level. Perhaps this meets your needs.
If I understand you correctly, it sounds like the google maps api would work for you:
You can find more info here. here
Additionally, you may find this info useful.