Skocz do zawartości
"Idzie nowe..." - o zmianach i nie tylko ×
Przeniesienie zakupów z IPS Marketplace / Moving bought items from IPS Marketplace ×

groverr

Użytkownik
  • Postów

    352
  • Dołączył

  • Ostatnia wizyta

Informacje o forum

  • Wersja
    IP.Board 3.2.3

Osiągnięcia groverr

Biegły

Biegły (10/14)

  • Pierwszy post
  • Współtwórca
  • Rozpoczęcie dyskusji
  • Pierwszy tydzień zakończony
  • Miesiąc później

Najnowsze odznaki

9

Reputacja

  1. Tu zadziała jQuery.noConflict(); dodajesz po <script type="text/javascript"> i wszystkie $ zamieniasz na jQuery
  2. testował to ktoś , ja na localu testowalem i d*pa nie działa ...
  3. http://community.invisionpower.com/files/file/4562-advanced-hide-code/ http://community.invisionpower.com/files/file/4393-th-hide-links-from-guests/ http://community.invisionpower.com/files/file/4361-bim-hide-link-and-code/
  4. heheh czyli skubaniec miał czy ma nulled ..
  5. Szukałem ostatnio jakiegoś ciekawego pomysłu na stronkę do głosowania , znalazłem cośtakiego http://1001golos.ru/?lang=en Czy jest możliwość zrobienia czegoś takiego ?
  6. http://forum.invisionize.pl/tutorials/article/17-jak-znalezc-i-zmienic-fragment-stylu/
  7. Tak szukałem ,jest ale na IE .... Masz jakiś pomysł ?
  8. Z tej strony co podałeś http://www.pageresource.com/html/embed.htm potrzeba wtyczki aby grała muzyka .. A na tamtej stronie http://fangorn.pl nie trzeba instalowac wtyczek.. Czyli na tej stronie http://fangorn.pl jest coś innego ..
  9. No krzyczy mi o wtyczkach , a tam nie Czyli to chyba coś innego..
  10. tu przykład http://fangorn.pl
  11. Witam .. Czy moze mi ktoś pomóc , jak zrobić tło dzwiękowe ?na mozilli i opera..I zeby nie było w flash.. Chcę zrobić tak żeby , jak wyłącze forum to leciała muza ... Dziękuje
  12. Dziękuje wszystkim za pomoc ..
  13. Witam jeżeli zły temat lub w złym miejscu poporoszę poprawić .. Oraz czy mogę prosić kogoś o wyjaśnienie jak zrobić cośik takiego Portfolio--->Block Widget..itd Dziękuje za pomoc
  14. Próbowałem zmienić format zauploadowanej grafiki na jpg i ponownie przesłałem, wkleiłem link bezpośredni (prawym na przesłaną grafię --> Kopiuj adres obrazka) w tagi (oczywiście bez spacji, a zamiast kropek wkleiłem link bezpośredni) ale dalej to samo.. Jak nie można jak można foto musi mieć zakończenie np jpg. png czy gif , a twoje nie ma
  15. Posiadam owy kod /** * @description showcase plugin for prototype.js * @author Victor Stanciu; contact [at] victorstanciu [dot] ro; http://www.victorstanciu.ro/ * @date 03/10/2008 * @requires prototype.js 1.6, effects.js 1.8 */ Showcase = Class.create(Abstract, { initialize: function (sections, controls, options) { this.allSections = this.sections = sections; this.controls = controls; this.options = Object.extend({ ratio: 0.5, initialDelay: 1, duration: 0.5, size: this.sections.size() }, options || {}); this.running = false; this.queue = new Array; this.computeMetrics(); this.sections = this.allSections.slice(this.currentIndex - this.half, this.currentIndex + this.half + 1); this.allSections.each((function (section, index) { section.setStyle({position: 'absolute', zIndex: Math.abs(index - this.sections.size()), left: '50%', top: '50%', marginLeft: -Math.round(section.getWidth() / 2) + 'px', marginTop: -Math.round(section.getHeight() / 2) + 'px'}).initialIndex = index; section.observe('click', this.jump.bind(this)).observe('mouseover', function (event) { section.setOpacity(1); }).observe('mouseout', function () { section.setOpacity(section.opacity); }).opacity = 1; if (!this.sections.member(section)) { this.queue.push(section.hide()); } }).bind(this)); for (i = 0; i <= this.half; i++) { this.sections.push(this.sections.shift()); } this.controls.invoke('observe', 'click', this.click.bind(this)); (this.animate.bind(this)).delay(this.options.initialDelay); }, computeMetrics: function () { this.half = this.currentIndex = (this.options.size - 1) / 2; this.ratioStep = Math.round(((1 - this.options.ratio) / this.currentIndex) * 100) / 100; this.positionStep = Math.round(50 / this.half * 100) / 100; this.maxDimensions = this.sections.first().getDimensions(); }, click: function (event) { event.stop(); var element = event.findElement('a'); if (!this.running) { eval("this." + element.rel + "()"); } this.animate(element.rel); }, previous: function () { if (this.options.size < this.allSections.size()) { var sectionIn = this.queue.shift(); var sectionOut = this.sections.pop(); this.sections.unshift(sectionIn); this.queue.push(sectionOut.fade({duration: this.options.duration})); } else { this.sections.unshift(this.sections.pop()); } }, next: function () { if (this.options.size < this.allSections.size()) { var sectionIn = this.queue.shift(); var sectionOut = this.sections.shift(); this.sections.push(sectionIn); this.queue.push(sectionOut.fade({duration: this.options.duration})); } else { this.sections.push(this.sections.shift()); } }, jump: function (event) { event.stop(); if (!this.running) { var section = this.sections[this.sections.indexOf(event.findElement('li'))]; var direction = ''; if (section.index < this.half) { (this.half - section.index).times((function () { this.previous(); }).bind(this)); direction = 'previous'; } else if (section.index == this.half) { } else { (section.index - this.half).times((function () { this.next(); }).bind(this)); direction = 'next'; } } this.animate(direction); }, runEffects: function () { this.stackSections.bind(this).delay(this.options.duration / 2); this.running = new Effect.Parallel( this.effects.map(function (effect) { return new Effect.Parallel([ new Effect.Morph(effect.section, { style: effect.style, sync: true, delay: 1, transition: Effect.Transitions.linear }), new Effect.Appear(effect.section, { to: Math.min(effect.section.ratio, 1), sync: true }) ], { sync: true, beforeStart: function () { } }); }), { duration: this.options.duration, afterFinish: (function () { this.running = false; }).bind(this) }); }, stackSections: function () { this.sections.each(function (section) { section.setStyle({zIndex: section.stackIndex}); }); }, indexSections: function () { this.sections.each((function (section, index) { section.index = index; section.modifier = Math.abs(Math.abs((section.index - (this.sections.size() - 1) / 2)) - this.half); section.ratio = Math.round(((section.modifier * this.ratioStep) + this.options.ratio) * 100) / 100; section.width = Math.min(Math.round(this.maxDimensions.width * section.ratio), this.maxDimensions.width); section.height = Math.min(Math.round(this.maxDimensions.height * section.ratio), this.maxDimensions.height); section.positionIndex = (section.index - (this.sections.size() - 1) / 2); section.stackIndex = Math.abs(Math.abs((section.index - (this.sections.size() - 1) / 2)) - this.half) + 1; section.left = section.top = Math.round((this.half + section.positionIndex) * this.positionStep); section.opacity = Math.min(section.ratio, 1); }).bind(this)); } }); Showcase.Horizontal = Class.create(Showcase, { animate: function (direction) { this.indexSections(); this.effects = new Array(); this.sections.each((function (section) { var style = { left: section.left + '%', top: '50%', marginTop: -Math.abs(section.height / 2) + 'px', width: section.width + 'px', height: section.height + 'px' }; if (section.left == 0) { style.marginLeft = '0px'; } else if (section.left == 50) { style.marginLeft = -Math.round(section.width / 2) + 'px'; } else if (section.left == 100) { style.marginLeft = -section.width + 'px'; } else { style.marginLeft = -Math.round(section.width / 2) + 'px'; } this.effects.push({section: section, style: style}); }).bind(this)); this.currentIndex = this.sections[this.half].initialIndex; this.runEffects(); } }); Showcase.Vertical = Class.create(Showcase, { animate: function (direction) { this.indexSections(); this.effects = new Array(); this.sections.each((function (section) { var style = { top: section.top + '%', left: '50%', marginLeft: -Math.abs(section.width / 2) + 'px', width: section.width + 'px', height: section.height + 'px' }; if (section.top == 0) { style.marginTop = '0px'; } else if (section.top == 50) { style.marginTop = -Math.round(section.height / 2) + 'px'; } else if (section.top == 100) { style.marginTop = -section.height + 'px'; } else { style.marginTop = -Math.round(section.height / 2) + 'px'; } this.effects.push({section: section, style: style}); }).bind(this)); this.currentIndex = this.sections[this.half].initialIndex; this.runEffects(); } }); Showcase.Diagonal = Class.create(Showcase, { animate: function (direction) { this.indexSections(); this.effects = new Array(); this.sections.each((function (section) { var style = { left: section.left + '%', top: section.top + '%', width: section.width + 'px', height: section.height + 'px' }; if (section.left == 0) { style.marginLeft = '0px'; } else if (section.left == 50) { style.marginLeft = -Math.round(section.width / 2) + 'px'; } else if (section.left == 100) { style.marginLeft = -section.width + 'px'; } else { style.marginLeft = -Math.round(section.width / 2) + 'px'; } if (section.top == 0) { style.marginTop = '0px'; } else if (section.top == 50) { style.marginTop = -Math.round(section.height / 2) + 'px'; } else if (section.top == 100) { style.marginTop = -section.height + 'px'; } else { style.marginTop = -Math.round(section.height / 2) + 'px'; } this.effects.push({section: section, style: style}); }).bind(this)); this.currentIndex = this.sections[this.half].initialIndex; this.runEffects(); } }); Ale jak klikam na obrazek nie przekierunkowywuje na stronę z adresu linka ,Czy może ktoś pomóc ? Adres do rotatora http://www.victorstanciu.ro/?s=Showcase.js
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.