Jump to content
  • 0

onmouseover


htmlbr
 Share

Question

Добрый вечер!

Скажите. а можно ли через событие onmouseover поменять бэкграунд у блока? И если да, то как прописатьв стилях чтобы он ещё и repeat был.

Пробовала, не получается

Edited by htmlbr
Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0

Добрый вечер!

Скажите. а можно ли через событие onmouseover поменять бэкграунд у блока? И если да, то как прописатьв стилях чтобы он ещё и repeat был.

Пробовала, не получается

Т.е. тебе нужно, чтобы по этому событию менялся цвет, а после уведения мыши оставался изменённым?

Link to comment
Share on other sites

  • 0

нет, при "уведении" мыши всё назад. :)

Тогда тебе нужно два события, onmouseover и onmouseout.

element.onmouseover = function(){

this.style.background = 'url(img.jpg) left top no-repeat'

}

element.onmouseout = function(){

this.style.background = ''

Link to comment
Share on other sites

  • 0

чтобы не создавать лишнюю тему - спрошу тут. Есть ли такой скрипт, который показывает картинку только тогда, когда она полностью загрузилась и плавно её выводит?

да существует поди, но я не знаю где его искать :)

У меня в одной галерее была предзагрузка картинок код вот:

<script type="text/javascript">
(function($) {
$.fn.preload = function(options) {
var opts = $.extend({}, $.fn.preload.defaults, options);
o = $.meta ? $.extend({}, opts, this.data()) : opts;
var c = this.length,
l = 0;
return this.each(function() {
var $i = $(this);
$('<img/>').load(function(i){
++l;
if(l == c) o.onComplete();
}).attr('src',$i.attr('src'));
});
};
$.fn.preload.defaults = {
onComplete : function(){return false;}
};
})(jQuery);
</script>

Может он чем-то вам поможет. Но если честно, я даже не представляю как это работает и можно ли его прикрутить к чему-то - я не программист

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy