Enable the default image viewer on Tumblr [closed] - javascript

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
How would you go about disabling a default function which enlarges an image? I am creating a Theme for my Tumblr blog and I want to make it so that when a user clicks on the image they are redirected to the link of the actual post rather than seeing an enlarged image.
For a greater understanding of what I am talking about click on an image on the following Tumblog page:
http://cyrillkuhlmann.tumblr.com/

In order to prevent a function from firing all you have to do is the following with JQuery
$(document).ready( function(){
$("img").click(function (){
return false;
// This will prevent the light box from firing when you click the image
});
});

Related

Trying to make a custom changeable background [closed]

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 1 year ago.
Improve this question
I want to make a changeable background with a button and menu like on the new tab page that google has can you help
Have the button click by setting an event listener to it
btn stands for the variable referencing the button element. It's just a personal preference, you can name the variable your choice.
btn.addEventListener("click", function(){
// code to be executed
}
Just have the button click set the class to the body tag.

Detect when play button clicked in the video of my website [closed]

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"m developing a website for children. here i'm viewing videos for children.i want to handle some procedures when child click the play button.how can i catch that event when child press the play button. (I'm using html tag to play videos).Someone please help me. Advance thanks.
$(document).on('play', 'video', function(){
//do something
});
Events https://www.w3.org/2010/05/video/mediaevents.html

How can I show a mouse hover info box? [closed]

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 php website where I use mysql as database. I want a feature like https://www.instantssl.com their bottom right corner seal.
Its showing specific info when anyone hover the mouse or click it.
I want the same feature. how can I do it?
You could create a <div> element within your page that holds the content you want displayed on mouse over. Once the mouse over event is trigger, you could then hide/show it. Things you should research:
onmouseover event
.show() jquery
.hide() jquery
These are the three basic events that you need.

Click to Enlarge Image on Tumblr page [closed]

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 8 years ago.
Improve this question
On my Tumblr page, when a user click on my image, I want the image to enlarge.
Click here for an example of a Tumblr page that does what I want. The Image enlarges once its being clicked on, and it returns back to the Tumblr page when the user clicks on the area that isn't the image.
I tired searching for a solution for a few days now, but nobody that I know seems to know how to do this.
I believe she uses the tumblr photoset feature -
http://support.tumblr.com/post/41532540119/the-new-photosets.
The actual script being used onClick of the image is rapid click http://l.yimg.com/ss/rapid-3.18.1.js

Hidden bootstrap section that appear with animation [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Is there any way I can make with a jQuery plugin or some javascript a hidden responsive bootstrap section that appear with an animation, like this one:
http://kjarninn.is/ (click BLAƐAHILLA in the navbar)
$(function() {
$('#slidePanel').hide();
$('#panelShow').click(function() {
$('#slidePanel').slideDown();
});
$('#panelHide').click(function() {
$('#slidePanel').slideUp();
});
});
http://jsfiddle.net/isherwood/pRNe8/
Notice that jQuery is loaded in this fiddle, and that I've used some absolute positioning to prevent the panel from pushing the page content down.

Categories

Resources