当前位置: 首页 > 图文教程 > 网络编程 > Javascript > JavaScript有趣实例:胸罩罩杯尺寸计算器

Javascript
javascript动画效果类封装代码
javascript关于复选框的实用脚本代码
javascript使用Dom改变超链接前面文本框的值
javascript select列表内容按字母倒序排序与按列表倒序排列
(兼容ff/ie)td点击背景变色特效
javascript跟随滚动条滚动的层(浮动AD效果)
javascript按指定格式输出文件最后更新时间
javascript实现的一个自定义长度的文本自动换行的函数。
javascript模仿百万格子小的一小段代码
兼容FireFox 用javascript写的一个画图函数
javascript写的一个表单动态输入提示的代码
不错的用resizeTo和moveTo两个函数实现窗口的“打乒乓球”效果
javascript一个判断浏览器类型的函数(类)
不错的用外部Javascript修正特定网页内容
找到了一篇jQuery与Prototype并存的冲突的解决方法
070823更新的一个[消息提示框]组件 兼容ie7
错误剖析之JavaScript的9个陷阱及评点
推荐一些非常不错的javascript学习资源站点
出现“不能执行已释放的Script代码”错误的原因及解决办法
给Javascript数组插入一条记录的代码

Javascript 中的 JavaScript有趣实例:胸罩罩杯尺寸计算器


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-28   浏览: 275 ::
收藏到网摘: n/a

  JavaScript出能能为网页添加更多互动元素、为网页的视觉效果锦上添花之外,还能干些什么?今天这个答案也许会出乎你的意料,外国一位设计师Ed Spencer用JavaScript为一个内衣网站编写了胸罩罩杯尺寸计算器。我们在使用JavaScript完成日常工作之余,其实也能编写这种有趣的程序。

  只在周末放松一下。

  近来Ed Spencer为一个更具诱惑性网站中的一个工作,这家网站是专卖女性内衣的。 除了不得不一整天去看只穿内衣的女人的图片这个不值得羡慕的任务之外,Ed Spencer还被迫去写一个胸罩尺寸计算器。

  胸罩尺寸计算器背后的理论是有点神秘和神奇了。 让一个男人或野兽理解它并不容易,所以它是幸运的,Ed Spencer完全不属于那两类, 他通过了痛苦和折磨的考验节省了广大女性的麻烦。

  下面来学习学习这个JavaScript有趣实例吧…

  这里是JS源文件,点击查看

代码如下:

var BraCalculator = {
    /**
    * The string to be returned when the result could not be calculated. Overwrite to change this
    */

    unknownString: “Unknown”,
    cupSizes: ["A", "B", "C", "D", "DD", "E", "EE", "F", "FF", "G", "GG", "H", "HH",
"J", "JJ", "K", "KK", "L", "LL", "M", "MM", "N", "NN"],
    /**
    * Returns the correct bra size for given under bust and over bust measurements
    * @param {Number} underBust The measurement taken under the bust (in inches)
    * @param {Number} overBust The measurement taken over the bust (in inches)
    * @return {String} The correct bra size for the given measurements (e.g. 32C, 40DD, etc)
    */

    calculateSize: function(underBust, overBust) {
        var bandSize = this.calculateBandSize(underBust);
        var cupSize = this.calculateCupSize(bandSize, overBust);
        if (bandSize && cupSize) {
            return bandSize + cupSize;
        } else {
            return this.unknownString;
        };
    },
    /**
    * Calculates the correct band size for a given under bust measurement
    * @param {Number} underBust The measurement under the bust
    * @return {Number} The correct band size
    */

    calculateBandSize: function(underBust) {
        var underBust = parseInt(underBust, 10);
        return underBust + (underBust % 2) + 2;
    },
    /**
    * Calculates the Cup size required given the band size and the over bust measurement
    * @param {Number} bandSize The measured band size (should be an even number)
    * @param {Number} overBust The measurement taken over the bust
    * @return {String} The appropriate alphabetical cup size
    */

    calculateCupSize: function(bandSize, overBust) {
         var bandSize = parseInt(bandSize, 10);
         var overBust = parseInt(overBust, 10);
         var diff = overBust - bandSize;
         var result = this.cupSizes[diff];
         //return false if we couldn’t lookup a cup size
         return result ? result : false;
    }
};

点击这里使用胸罩罩杯尺寸计算器

英文原文:JavaScript Bra Size Calculator