Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: 1 2 [3] 4 5 6 7 8   Go Down

Author Topic: Imageflow (coverflowish JS animation)  (Read 203320 times)

0 Members and 1 Guest are viewing this topic.

PZsHosting

  • Coppermine newbie
  • Offline Offline
  • Posts: 16
Re: Imageflow (coverflowish JS animation)
« Reply #40 on: May 08, 2008, 08:13:03 am »

==============
 Imageflow external
==============

Via <iframe>, how can the clicks be made: target="_blank"?

Thanks
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #41 on: May 09, 2008, 04:00:10 pm »

@ Joachim & ngul:

I really hope, v1.71 will fix your issues. Thanks again for your feedback.

best regards
Timo
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #42 on: May 09, 2008, 04:26:47 pm »

Via <iframe>, how can the clicks be made: target="_blank"?

Open imgflow_imageflow.js with a text editor.

Find line
Code: [Select]
image.ondblclick = function() { document.location = this.url; }and replace with
Code: [Select]
image.ondblclick = function() { window.open(this.url,'_blank','resizable=1'); }Find line
Code: [Select]
image.onclick = function() { document.location = this.url; }and replace with
Code: [Select]
image.onclick = function() { window.open(this.url,'_blank','resizable=1'); }
regards
Timo
Logged

PZsHosting

  • Coppermine newbie
  • Offline Offline
  • Posts: 16
Re: Imageflow (coverflowish JS animation)
« Reply #43 on: May 09, 2008, 04:46:54 pm »

Thank you!

I have Coppermined bridged to my SMF and yesterday when I tried the external on the front page of my TinyPortal of my SMF, when clicking on the images, I got the displayimage showing up in the iframe still on the frontpage of my SMF.

This is much better. Thank you!
Logged

ngul

  • Coppermine newbie
  • Offline Offline
  • Posts: 13
Re: Imageflow (coverflowish JS animation)
« Reply #44 on: May 09, 2008, 11:09:54 pm »

Hi Timos, as i've tell you, i solved problem about your great plugin!
I've installed latest version, work well in Firefox but in IE6 when click on image, something don't work: the image disappear!  :o
No problem in Safari (3.1.1) and Opera browsers!!  ::)

I don't know in IE7.....
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #45 on: May 10, 2008, 01:03:02 pm »

Hi Timos, as i've tell you, i solved problem about your great plugin!
I've installed latest version, work well in Firefox but in IE6 when click on image, something don't work: the image disappear!  :o
No problem in Safari (3.1.1) and Opera browsers!!  ::)

I don't know in IE7.....

This bug report is valid for IE6 and IE7 in quirksmode. EnlargeIt! seems to have a problem getting the viewport of the browser window. For the moment, there's several solutions:
a) Fix your HTML
b) Try switching the option "center on page" in EnlargeIt! settings on Imageflow config page.
c) Turn off EnlargeIt! on Imageflow config page.

regards
Timo
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Imageflow (coverflowish JS animation)
« Reply #46 on: May 10, 2008, 08:45:47 pm »

@Timo: I suggest adding a line to your initial posting that clarifies that only valid HTML will result in proper output. I would not worry too much about potential issues with people who have invalid HTML - they are bound to run into issue when using DHTML stuff.
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #47 on: May 11, 2008, 12:27:39 am »

@ngul: Please replace the file enlargeit.js in plugins/imageflow/enlargeit with the one from the attached ZIP file and report if it works correctly with your skin (please empty your browser cache before trying to make sure your IE uses the latest version!) - I hope I've fixed the quirksmode bug.

@Joachim: I don't worry too much, but on the other hand it's my personal ambition to make EnlargeIt! work with as many pages and cpg skins and browsers as possible, and not all skins are valid HTML, forcing IE<=6 into quirks mode. In this special case, it was adding 30 byte to the JS file, and while finding out which 30 bytes I had to add, I learned a lot about how strange the brains of MS staff seem to work, what really made my day in some way. Did I mention that I hate IE?

regards, and
looking forward to ngul's report
Timo
Logged

ngul

  • Coppermine newbie
  • Offline Offline
  • Posts: 13
Re: Imageflow (coverflowish JS animation)
« Reply #48 on: May 11, 2008, 10:38:08 am »

Perfect Timo!!! Work like a charm now on all browsers and seem to be fastest on images loading!  ;D
Thank for your support Timo!!

Regards
« Last Edit: May 11, 2008, 11:52:57 am by ngul »
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #49 on: May 11, 2008, 01:42:21 pm »

Hi ngul,

glad to hear that - just released v1.73 with quirksmode compatible EnlargeIt! version. ;-)

regards
Timo
Logged

ppeter

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 36
Re: Imageflow (coverflowish JS animation)
« Reply #50 on: May 12, 2008, 01:06:57 pm »

hi!

thank you for this wonderful plug in

how can i change in imgflow_external

in the file imgflow_reflect.php

bgc              optional   Background colour to fade into, default = #FFFFFF

in what line can i change the color?

regards
peter
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #51 on: May 12, 2008, 01:47:39 pm »

File imgflow_external.php, line 15.
Logged

Hein Traag

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: nl
  • Offline Offline
  • Gender: Male
  • Posts: 2166
  • A, B, Cpg
    • Personal website - Spintires.nl
Re: Imageflow (coverflowish JS animation)
« Reply #52 on: May 12, 2008, 04:35:40 pm »

Timos,

in the english lang file there's some leftover German (not fastfood but text  ;D )
"(percent oder absolute;"

Cheers
Hein

p.s. added dutch lang file
« Last Edit: May 12, 2008, 04:59:42 pm by Hein Traag »
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #53 on: May 12, 2008, 05:50:33 pm »

Thanks Hein, I've added the dutch file to the ZIP and your karma has increased second time today. :)

BTW: Changed the 'oder' to 'or', thanks for the hint. But i'd prefer dutch fastfood over german one indeed (hmm frikandel).
Logged

fil6718

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 34
Re: Imageflow (coverflowish JS animation)
« Reply #54 on: May 21, 2008, 11:50:18 am »

I've put this plugin on my gallery and it works perfectly
Thanks for your work
Just a question : Can we put a link on the enlarge photo to go directly on the album of this photo ? (like the HighSlide plugin)
Logged

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #55 on: May 21, 2008, 12:20:32 pm »

The EnlargeIt! option in this plugin will merge with the EnlargeIt! CPG plugin to come in the next weeks that will bring a complete AJAX gui for Coppermine. Look here for a preview of EnlargeIt! v0.95, and then imagine a button for pic info, one for voting, one for comments, one for add to favourites and so on. A link to the intermediate page won't be neccessary then anymore, just like the whole intermediate page won't (though it will stay where it is for people without Javascript). That's why I won't add a link feature ATM - it's just not worth to spend the time IMHO.

Please have a little patience, there's good things to come!   ;)
Logged

fil6718

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 34
Re: Imageflow (coverflowish JS animation)
« Reply #56 on: May 21, 2008, 03:25:27 pm »

Great!!!
Thanks for your answer

I'm waiting for your new plugin.
Logged

fangweile

  • Coppermine frequent poster
  • ***
  • Country: 00
  • Offline Offline
  • Posts: 103
  • Saranghaeyo ^_^
    • All Koreans - Home of Korean Actors and Actresses
Re: Imageflow (coverflowish JS animation)
« Reply #57 on: June 03, 2008, 10:00:12 am »

OMG, :o it is really great, I am using it right now.  I really like it.
Thanks a lot for this plug-in
Logged
[My Coppermine Galleries]
All Koreans, Lim Eun-kyeong's IFC
Saranghae 김태희

fangweile

  • Coppermine frequent poster
  • ***
  • Country: 00
  • Offline Offline
  • Posts: 103
  • Saranghaeyo ^_^
    • All Koreans - Home of Korean Actors and Actresses
Re: Imageflow (coverflowish JS animation)
« Reply #58 on: June 20, 2008, 03:29:13 am »

Like what I said above it works great, however when I modified my current theme and added some hover functions, it seems like it doest work anymore in firefox. It works perfectly when I view it in IE and it only display the "loading images" in firefox. I think there is a conflict with my script thats why it doest load. I don't know what is seems to change to make it display in firefox. Take a look at my gallery here:
www.allkoreans.net/gallery . Perhaps someone have suggestion or fix on this. Thanks in advance. ^_^
Logged
[My Coppermine Galleries]
All Koreans, Lim Eun-kyeong's IFC
Saranghae 김태희

Timos-Welt

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 808
    • Timos-Welt
Re: Imageflow (coverflowish JS animation)
« Reply #59 on: June 20, 2008, 09:10:21 am »

This thread is about Imageflow plugin, not about other scripts you wrote yourself or took from somewhere else. Please open a seperate thread in a appropriate forum to correct your javascript issues.
Logged
Pages: 1 2 [3] 4 5 6 7 8   Go Up
 

Page created in 0.026 seconds with 20 queries.