版本更新记录与翻译0.9.5.4 b1-0.9.6 b1 Beta版本汉化更新 0.9.6.1 Beta 2 Foobar2000 0.9.6.1 Final 汉化版发布new! 标题格式化和媒体库查询表达式帮助
Foobar2000基础帮助中心
新手必看 FB2K小常识
Foobar2000汉化周年纪念版
无损音乐资源共享
插件集合帖
汉化团队插件发布帖
提问的规范和技巧,发问帖必看。
foobar2000扩展与主题支持beta
2/3页123 跳转到查看:6544
发新话题 回复该主题
1. 将鼠标移动到页面左上角待出现光标后,再慢慢移动到光标上,看帖更清爽
2. 键盘左右键可以进行前后翻页操作
帮助

[界面插件] Chronial-流动封面(foo_chronflow_v0.3.0)-基本汉化版来了

谢谢分享

TOP

 

需要多少积分才能下载?

TOP

 

我连歌词都不喜欢查看的说.......

TOP

 

太棒了,就此谢过!!!

TOP

 

非常好,
谢谢提供下载

TOP

 

看看图片就知道何不合适自己用了

TOP

 

请问楼主,foo_chronflow这个插件能支持多少个播放列表?现在我有90个列表,好像它不能再添加显示了。

TOP

 

欺负新手哈! 。不给说使用说明,我下来不知道咋用。

TOP

 

非常难搞,如果你真的能使用,就给一个教程,要不就是在秀。

TOP

 

楼主 能讲一下 多样式流动封面 的  图片采集源 的代码怎末写吗  最好把你代码 发出来
  借鉴一下1

TOP

 

确实很好看 但是听说CPU占用很高 老机器受苦啊

TOP

 

// Author: mil3s

// General Notes:
// Most of these functions return an array with 3 elements
// These are the x,y,z coordinates in 3d-space
// x is left to right
// y is bottom to top
// z is front to back

var coverSpacing = 0.05;

/************************* COVER DISPLAY *****************/
// These functions define the Display of the single Covers
// The given parameter coverId is a floating point number.
// It is 0 for the center cover, 1 for the one right
// beneath it, -1 for the one on the left side and so on.
// During movement the values float between the integer
// values.
function coverPosition(coverId){
    var x, y, z;
    y = 0;
    if (Math.abs(coverId) <= 1){ // The centered cover
        z = 4 + 0.5 * (1 - Math.abs(coverId));
        x = coverId * 0.875;
    } else { // The covers on the side
        z = 4 - (Math.abs(coverId)-1) * 0.01;
        x = 0.875 + coverSpacing * (Math.abs(coverId)-1);
        if (coverId < 0)
            x *= -1;
    }
    return new Array(x, y, z);
}

// return array is (angle, x, y, z) - this rotates
// the cover *angle* degrees around the vector (x,y,z)
// With (0,0,0,0) the cover is parallel to the x-y-Plane
function coverRotation(coverId){
    var angle;
    if (Math.abs(coverId) < 1){ // The centered cover
        angle = coverId * -60;
    } else { // The covers on the side
        if (coverId > 0)
            angle = -60;
        else
            angle = 60;
    }
    return new Array(angle, 0, 1, 0);
}

// Defines the the size boundaries for the cover.
// Aspect ratio is preserved.
// Return Array is (widht, height)
function coverSizeLimits(coverId){
    return new Array(1, 1);
}


// Sets which point of the cover coverPosition() defines
// (-1,-1) means bottom left, (0,0) means center,
// (1,1) means top right, (0, -1) means bottom center etc.
// The cover is also rotated around this point.
function coverAlign(coverId){
    return new Array(0, -1);
}


// Defines the range of covers to draw.
// Return array is (leftmostCover, rightmostCover)
// This interval shouldn't be larger than 80
// The center cover is 0.
function drawCovers(){
    return new Array(-30, 30);
}


// In which direction should the fov be expanded/shrinked
// when the panel is resized?
// If this returns (0,1), the height is fixed.
// If this returns (1,0), the width is fixed.
// You can also return stuff like (0.5,0.5) or (7, 3)
// The values determine how important it is for this
// dimension to stay fixed.
function aspectBehaviour(){
    return new Array(0, 1);
}

/************************** CAMMERA SETUP ****************/
// Position of the viewport
function eyePos(){
    return new Array(0, 1.15, 6.1);
}
// Defines the point for the eye to look at
function lookAt(){
    return new Array(0, -1.15, 0);
}
// Used to rotate the view.
// The returned Vector points upwards in the viewport.
// This vector must not be parallel to the line of sight from the
// eyePos point to the lookAt point.
function upVector(){
    return new Array(0, 1, 0);
}

/************************** MIRROR SETUP *****************/
function showMirrorPlane(){
    return true; // return false to hide the mirror
}
// Any Point on the Mirror Plane
function mirrorPoint (){
    return new Array(0, 0, 0);
}
// Normal of the Mirror Plane
function mirrorNormal (){
    return new Array(0, 1, 0);
}

TOP

 

现在都是双核电脑了,资源应该不是问题吧,

TOP

 

支持一下,呵呵

TOP

 

就此谢过

TOP

 

....这个东西怎么用啊

TOP

 

这个东西是听歌的  太花哨  容易腻

TOP

 

好东西...顶了...

TOP

 

不错的东西,...要了

TOP

 

FB整理歌曲时才调出界面,平时呆在任务栏里,这个有些华而不实了。与其看封面不如下些MV。汉化一下LZ的辛苦还是要感谢的。

TOP

 
2/3页123 跳转到
发表新主题 回复该主题