Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 months ago.
Improve this question
I watched a video about awesome made websites. There was this website with a bunch of cool effects. You can visit the site over here: http://www.amandabraga.com/
Now i'm asking myself as a rookie in frontend development how all these effects are made?
A lot of these are CSS/JS transformations and hover animations - if the user applies a hover animation to the background class, on mouse-over it'll load in the animations using javascript.
If you're interested in trying something like this, check out Webflow. They allow you to create free website and they support some insane animations without having web design experience, or knowledge of coding. I've seen many similar websites created through Webflow.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 months ago.
Improve this question
Apologies in advance if I'm missing something obvious here. But to my knowledge, all the code: css, html and JS, are available to anyone visiting your website (or playing your game on the web). How do they prevent people from stealing the original content?
You can use obfuscating tools to make your code less readable.
Also it's possible to make it harder to open devtools on your website.
But it is still not enough. You cannot just prevent somebody from doing something on the Internet. Everything you release to the web is accessible and copyable.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
So i'm building a website in PHP7, HTML5, CSS3, JQuery, JavaScript5 not WordPress to be clear. One feature i would like is to allow users to change their theme to something that is not default theme so how would one do this i mean making the theme and implementing them? Would it just be an element say a drop down box with CSS documents or something else?p.s. my other questions did not go down well so if this does not make sense or is unclear please let me know so i can improve it.
I didn't get your question exactly. But these are my opinions.
Generally , Custom Themes are added using themes(Non Wordpress) which you can download from sites like themeforest , envato market ,template.net etc. Either you can tweak it and make it your own or just use as it is. But if you do so please do have a glance at the licensing to avoid future problems.
And Dropdown menu can be made using CSS and JavaScript. I would say that its not a must. Its the content which makes it notable.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm wondering how I can achieve an effect similar to that of http://eng.getlost-getnatural.ru/ or http://rnbtheme.com/sixteenth/. I've contacted various support forums supplied through Wordpress and all they've been able to tell me is that I need to get a web developer and that the effect was possible. I, however, don't have the money for a web developer and went searching online to try to find what I was looking for and haven't been able to find anything yet. I can make code changes to my Wordpress site using javascript or css. Thank you so much to everyone who helps and answers!
What you are asking for could take a couple of hours to code from scratch, and then trying to match it to a wordpress site that we can't see or use as reference can create a lot of problems. I recommend looking at some jQuery plugins.
Here is a site to get you started, https://www.jssor.com/demos/vertical-slider.slider.
If you have any questions about the code once you download the plugin then we will be able to help you further.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a page and I want to create a magnifier for my web page (HTML document not just images), I want do this for some reasons and I just want to know How can I do it? and is this possible?
Nothing is impossible, the word itself says " I'm possible"! Audery Hepburn
I know it's possible for professional programmers, and I'm just asking from them, How to do it?
I need lens magnifier and for all document, something like Windows magnifier
I searched on the Internet but there are just magnifiers for Images, and I need magnifier for all HTML document, and I don't expect you do it for me, I know JavaScript programming and I just need your suggestions and helps to find a way.
Take a look to Zoomooz. "It is a jQuery plugin for making web page elements zoom. It can be used for making Prezi like slideshows and for zooming to images or other details. Zoomooz is an easy-to-use jQuery plugin for making any web page element zoom."
Source:
http://jaukia.github.io/zoomooz/
https://github.com/jaukia/zoomooz
https://github.com/m-kermani/magni
I hope it helps :)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm a sw engineer but I have almost zero experience in web development. I have noticed recently few interesting websites and I'm curious how they are built.
The first example is
http://www.google.com/nexus/5/
I'm really excited about the way page reacts when you get to the mid part where it describes the camera.
Today I saw that Microsoft has a similar website for their new CEO
http://www.microsoft.com/en-us/news/ceo/index.html
Since this is Microsoft, I'm guessing that it uses completely different web technology.
So, my question is, if I were to build a website like this for myself, where would I start first? I'm guessing that Google's website is relying heavily on JavaScript, but are there any open libraries/frameworks that I could use to achieve this effect?
Parallax scrolling for the scroll effects.
The jQuery library of javascript and of course using HTML / CSS for styling and structuring your pages. This is where you can start off.